View Javadoc

1   package org.codehaus.xfire.annotations.backport175;
2   
3   /***
4    * backport175 version of the WebService Annotation.
5    *
6    * @author Arjen Poutsma
7    * @see org.codehaus.xfire.annotations.WebMethodAnnotation
8    */
9   public interface WebMethod
10  {
11      /***
12       * Returns the action for this operation. For SOAP bindings, this determines the value of the SOAPAction header.
13       *
14       * @return the action for this operation.
15       */
16      String action();
17  
18      /***
19       * Returns the name of the wsdl:operation matching this method. By default the WSDL operation name will be the same
20       * as the Java method name.
21       *
22       * @return the name of the wsdl:operation matching this method.
23       */
24      String operationName();
25  }