Searched refs:WebMethod (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/jws/
H A DWebMethod.java42 public @interface WebMethod { interface
62 * If this element is specified, other elements MUST NOT be specified for the @WebMethod.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/soap/
H A DSOAPBinding.java33 import javax.jws.WebMethod;
84 * {@link WebMethod#action()} annotation.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DJavaMethodImpl.java43 import javax.jws.WebMethod;
92 //@Action(input) =="", get it from @WebMethod(action)
93 WebMethod webMethod = seiMethod.getAnnotation(WebMethod.class);
103 //both are explicitly set via annotations, make sure @Action == @WebMethod.action
104 throw new WebServiceException("@Action and @WebMethod(action=\"\" does not match on operation "+ method.getName());
341 throw new WebServiceException("Method "+seiMethod.getName()+" is exposed as WebMethod, but there is no corresponding wsdl operation with name "+operationName+" in the wsdl:portType" + portType.getBinding().getPortType().getName());
348 //TODO input action might be from @Action or WebMethod(action)
H A DRuntimeModeler.java48 import javax.jws.WebMethod;
328 * WebMethod annotation, then only methods with this annotation
332 WebMethod webMethod;
334 webMethod = getPrivMethodAnnotation(method, WebMethod.class);
363 * 1. They are annotated with the javax.jws.WebMethod annotation with the exclude element set to
365 * 2. They are not annotated with the javax.jws.WebMethod annotation but their declaring class has a
378 WebMethod webMethod = getPrivMethodAnnotation(method, WebMethod.class);
381 return false; // @WebMethod(exclude="true")
386 return true; // @WebMethod
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceVisitor.java155 checkForInvalidImplAnnotation(method, WebMethod.class);
341 WebMethod webMethod;
343 webMethod = method.getAnnotation(WebMethod.class);
417 WebMethod webMethod = method.getAnnotation(WebMethod.class);
455 protected boolean shouldProcessMethod(MethodDeclaration method, WebMethod webMethod) {
481 abstract protected void processMethod(MethodDeclaration method, WebMethod webMethod);
620 WebMethod webMethod = method.getAnnotation(WebMethod.class);
621 //SEI cannot have methods with @WebMethod(exclud
[all...]
H A DWebServiceWrapperGenerator.java56 import javax.jws.WebMethod;
152 protected void processMethod(MethodDeclaration method, WebMethod webMethod) {
192 private boolean generateWrappers(MethodDeclaration method, WebMethod webMethod) {
/openjdk7/langtools/test/tools/javac/T5090006/
H A Dbroken.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/framework/ junit/framework/Assert.class Assert. ...
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/generator/
H A DSeiGenerator.java45 import javax.jws.WebMethod;
146 //@WebMethod
212 JAnnotationUse webMethodAnn = m.annotate(cm.ref(WebMethod.class));

Completed in 61 milliseconds