package tutorial.sample43;

/**
 * @wlws:webservice style="document"
 */
public class HelloWorldService{

  /**
   * @wlws:part return type="typeNS:schema-world-result" 
   *               xmlns:typeNS="http://tutorial/sample43/"
   */
  public World helloSchemaWorld(){
    World world = new World();
    return world;
  }

  /**
   * @wlws:part newWorld type="typeNS:send-me-world" 
   *               xmlns:typeNS="http://tutorial/sample43/"
   *
   * @wlws:part return type="typeNS:world-result" 
   *               xmlns:typeNS="http://tutorial/sample43/"
   */
  public String hello( World newWorld ){
    return newWorld.getName();
  }
}

