package tutorial.sample8;

public class HelloWorldService{

  /**
   * @wlws:part hi type="typeNS:TwoCharString" 
   *               xmlns:typeNS="http://tutorial/sample8/"
   *
   * @wlws:part return type="typeNS:string"
   *               xmlns:typeNS="http://www.w3.org/2001/XMLSchema"
   */
  public String helloWorld( String hi ){
    return "Hello! World" + hi;
  }

  public World helloSchemaWorld(){
    World world = new World();

    return world;
  }

}

