blob: 55dfca0d638f21b9e004da7744f2497261f9b75e [file] [log] [blame]
import java.util.List;
import java.util.Map;
@WebService(serviceName="WSImplBeanService", name="WSImplBean", targetNamespace="http://demo/sap/com/", portName="WSImplBeanPort")
@Stateless
public class Endpoint
{
@MyAnnotation(name="field1")
public String field1;
@WebMethod(exclude=false,operationName="test")
public void annotatedMethod( @WebParam(name="annotatedParam") String annotatedParam)
{
}
}