blob: 89c7a40e62a04160b6544d71443ebadc1d6b7b60 [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)
{
}
}