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.java7
1 files changed, 5 insertions, 2 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 6f3d57e6f7..9922b8a233 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,10 +18,11 @@
*/
package helloworld;
-import java.util.Vector;
-
import org.osoa.sca.annotations.Remotable;
+import anotherpackage.BBean;
+import anotherpackage.CBean;
+
/**
* This is the business interface of the HelloWorld greetings service.
*/
@@ -32,5 +33,7 @@ public interface HelloWorldService {
public String getGreetingsBean(ABean bean);
public String getGreetingsBeanArray(ABean[] bean);
//public String getGreetingsBeanVector(Vector<ABean> bean);
+ public String getGreetingsBBean(BBean bean);
+ public String getGreetingsCBean(CBean bean);
}