01: package de.schlund.pfixcore.example.webservices;
02:
03: public class CallTestImpl implements CallTest {
04:
05: public String test(String str) {
06: return str;
07: }
08:
09: public String testError(String str) {
10: if (str.equalsIgnoreCase("error"))
11: throw new IllegalArgumentException("Illegal value: " + str);
12: return str;
13: }
14:
15: }
|