You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by is...@apache.org on 2006/12/14 22:00:26 UTC

svn commit: r487350 - /incubator/tuscany/java/samples/sca/helloworldwsclient-async/src/main/java/helloworld/HelloWorldServiceComponent.java

Author: isilval
Date: Thu Dec 14 13:00:25 2006
New Revision: 487350

URL: http://svn.apache.org/viewvc?view=rev&rev=487350
Log:
Implement callback interface to avoid NoRegisteredCallbackException

Modified:
    incubator/tuscany/java/samples/sca/helloworldwsclient-async/src/main/java/helloworld/HelloWorldServiceComponent.java

Modified: incubator/tuscany/java/samples/sca/helloworldwsclient-async/src/main/java/helloworld/HelloWorldServiceComponent.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/helloworldwsclient-async/src/main/java/helloworld/HelloWorldServiceComponent.java?view=diff&rev=487350&r1=487349&r2=487350
==============================================================================
--- incubator/tuscany/java/samples/sca/helloworldwsclient-async/src/main/java/helloworld/HelloWorldServiceComponent.java (original)
+++ incubator/tuscany/java/samples/sca/helloworldwsclient-async/src/main/java/helloworld/HelloWorldServiceComponent.java Thu Dec 14 13:00:25 2006
@@ -30,7 +30,7 @@
 
 
 @Scope("MODULE")
-public class HelloWorldServiceComponent implements HelloWorldLocal {
+public class HelloWorldServiceComponent implements HelloWorldLocal, HelloWorldCallback {
    
     HelloWorldService helloWorldService;
 
@@ -54,6 +54,4 @@
     public void getGreetingsCallback(String getGreetingsReturn) {
         System.out.println("Callback: " + getGreetingsReturn);
     }
-
-    
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org