Class WebMethodAnnot
- java.lang.Object
-
- org.apache.axis2.jaxws.description.builder.WebMethodAnnot
-
- All Implemented Interfaces:
Annotation
public class WebMethodAnnot extends Object implements WebMethod
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
action()
Class<Annotation>
annotationType()
static WebMethodAnnot
createWebMethodAnnotImpl()
boolean
exclude()
String
operationName()
void
setAction(String action)
void
setExclude(boolean exclude)
void
setOperationName(String operationName)
String
toString()
Convenience method for unit testing.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.annotation.Annotation
equals, hashCode
-
-
-
-
Method Detail
-
createWebMethodAnnotImpl
public static WebMethodAnnot createWebMethodAnnotImpl()
-
operationName
public String operationName()
-
action
public String action()
-
exclude
public boolean exclude()
-
setAction
public void setAction(String action)
- Parameters:
action
- The action to set.
-
setExclude
public void setExclude(boolean exclude)
- Parameters:
exclude
- The exclude to set.
-
setOperationName
public void setOperationName(String operationName)
- Parameters:
operationName
- The operationName to set.
-
annotationType
public Class<Annotation> annotationType()
- Specified by:
annotationType
in interfaceAnnotation
-
toString
public String toString()
Convenience method for unit testing. We will print all of the data members here.- Specified by:
toString
in interfaceAnnotation
- Overrides:
toString
in classObject
-
-