Searched refs:webMethod (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceVisitor.java341 WebMethod webMethod;
343 webMethod = method.getAnnotation(WebMethod.class);
344 if (webMethod != null) {
345 if (webMethod.exclude()) {
346 if (webMethod.operationName().length() > 0)
348 if (webMethod.action().length() > 0)
417 WebMethod webMethod = method.getAnnotation(WebMethod.class);
418 if (webMethod != null && webMethod.exclude())
436 if (shouldProcessMethod(method, webMethod)) {
455 shouldProcessMethod(MethodDeclaration method, WebMethod webMethod) argument
481 processMethod(MethodDeclaration method, WebMethod webMethod) argument
[all...]
H A DWebServiceWrapperGenerator.java152 protected void processMethod(MethodDeclaration method, WebMethod webMethod) { argument
157 generatedWrapper = generateWrappers(method, webMethod);
192 private boolean generateWrappers(MethodDeclaration method, WebMethod webMethod) { argument
199 operationName = webMethod != null && webMethod.operationName().length() > 0 ?
200 webMethod.operationName() : operationName;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DJavaMethodImpl.java93 WebMethod webMethod = seiMethod.getAnnotation(WebMethod.class);
95 if (webMethod != null )
96 soapAction = webMethod.action();
H A DRuntimeModeler.java332 WebMethod webMethod;
334 webMethod = getPrivMethodAnnotation(method, WebMethod.class);
335 if (webMethod != null &&
336 !webMethod.exclude()) {
378 WebMethod webMethod = getPrivMethodAnnotation(method, WebMethod.class);
379 if (webMethod != null) {
380 if (webMethod.exclude()) {
470 WebMethod webMethod = getPrivMethodAnnotation(method, WebMethod.class);
471 if (webMethod != null && webMethod
[all...]

Completed in 51 milliseconds