summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/itest/wsdlgen/src/main/java/helloworld/HelloWorldClientImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'sca-java-1.x/trunk/itest/wsdlgen/src/main/java/helloworld/HelloWorldClientImpl.java')
-rw-r--r--sca-java-1.x/trunk/itest/wsdlgen/src/main/java/helloworld/HelloWorldClientImpl.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/sca-java-1.x/trunk/itest/wsdlgen/src/main/java/helloworld/HelloWorldClientImpl.java b/sca-java-1.x/trunk/itest/wsdlgen/src/main/java/helloworld/HelloWorldClientImpl.java
index 04fbe6934a..4ee6056438 100644
--- a/sca-java-1.x/trunk/itest/wsdlgen/src/main/java/helloworld/HelloWorldClientImpl.java
+++ b/sca-java-1.x/trunk/itest/wsdlgen/src/main/java/helloworld/HelloWorldClientImpl.java
@@ -23,6 +23,7 @@ import org.osoa.sca.annotations.Reference;
import org.osoa.sca.annotations.Service;
import yetanotherpackage.DBean;
+import yetanotherpackage.HelloWorldException;
import anotherpackage.BBean;
import anotherpackage.CBean;
@@ -64,5 +65,13 @@ public class HelloWorldClientImpl implements HelloWorldService {
public String getGreetingsDBean(DBean bean){
return "Hello " + hwService.getGreetingsDBean(bean);
- }
+ }
+
+ public String getGreetingsException(String input) throws HelloWorldException {
+ return hwService.getGreetingsException(input);
+ }
+
+ public byte[] getGreetingsByteArray(byte[] input) {
+ return input;
+ }
}