helloworld.impl
Class AsynchTranslatorComponent

java.lang.Object
  extended by helloworld.impl.AsynchTranslatorComponent
All Implemented Interfaces:
AsynchTranslatorService

public class AsynchTranslatorComponent
extends java.lang.Object
implements AsynchTranslatorService

This class implements the AsynchTranslatorService service interface.


Constructor Summary
AsynchTranslatorComponent()
           
 
Method Summary
 void getGreetings(java.lang.String name)
          This method takes a String name from the client and calls the clients callback method.
 void setHelloWorldCallback(HelloWorldCallback helloWorldCallback)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AsynchTranslatorComponent

public AsynchTranslatorComponent()
Method Detail

setHelloWorldCallback

public void setHelloWorldCallback(HelloWorldCallback helloWorldCallback)

getGreetings

public void getGreetings(java.lang.String name)
Description copied from interface: AsynchTranslatorService
This method takes a String name from the client and calls the clients callback method. The @OneWay annotation indicates that the forward call is non-blocking.

Specified by:
getGreetings in interface AsynchTranslatorService