summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/itest/wsdlgen/src/main/java/helloworld/HelloWorldService.java
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-1.x/itest/wsdlgen/src/main/java/helloworld/HelloWorldService.java')
-rw-r--r--branches/sca-java-1.x/itest/wsdlgen/src/main/java/helloworld/HelloWorldService.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/itest/wsdlgen/src/main/java/helloworld/HelloWorldService.java b/branches/sca-java-1.x/itest/wsdlgen/src/main/java/helloworld/HelloWorldService.java
index 9922b8a233..6b0425d473 100644
--- a/branches/sca-java-1.x/itest/wsdlgen/src/main/java/helloworld/HelloWorldService.java
+++ b/branches/sca-java-1.x/itest/wsdlgen/src/main/java/helloworld/HelloWorldService.java
@@ -18,14 +18,19 @@
*/
package helloworld;
+import javax.jws.WebService;
+
import org.osoa.sca.annotations.Remotable;
+import yetanotherpackage.DBean;
+
import anotherpackage.BBean;
import anotherpackage.CBean;
/**
* This is the business interface of the HelloWorld greetings service.
*/
+@WebService
@Remotable
public interface HelloWorldService {
@@ -35,5 +40,6 @@ public interface HelloWorldService {
//public String getGreetingsBeanVector(Vector<ABean> bean);
public String getGreetingsBBean(BBean bean);
public String getGreetingsCBean(CBean bean);
+ public String getGreetingsDBean(DBean bean);
}