package tutorial.sample4;

/**
 * @wlws:webservice targetNamespace="http://tutorial/sample4/"
 */
public class HelloWorldService{

  /**
   * @wlws:operation handler-chain="HelloWorldHandlerChain"
   */
  public String helloWorld(){
    return "hello! world";
  }
}

