HelloWorldImpl.java
Dosyayı İndir
package com.test;
import javax.jws.WebMethod;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.Action;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.9-b130926.1035
* Generated source version: 2.2
*
*/
@WebService(name = "HelloWorldImpl", targetNamespace = "http://test.com/")
@XmlSeeAlso({
ObjectFactory.class
})
public interface HelloWorldImpl {
/**
*
* @return
* returns java.lang.String
*/
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "hello", targetNamespace = "http://test.com/", className = "com.test.Hello")
@ResponseWrapper(localName = "helloResponse", targetNamespace = "http://test.com/", className = "com.test.HelloResponse")
@Action(input = "http://test.com/HelloWorldImpl/helloRequest", output = "http://test.com/HelloWorldImpl/helloResponse")
public String hello();
}
Dosyayı İndir