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 Stringaction()Class<Annotation>annotationType()static WebMethodAnnotcreateWebMethodAnnotImpl()booleanexclude()StringoperationName()voidsetAction(String action)voidsetExclude(boolean exclude)voidsetOperationName(String operationName)StringtoString()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:
annotationTypein interfaceAnnotation
-
toString
public String toString()
Convenience method for unit testing. We will print all of the data members here.- Specified by:
toStringin interfaceAnnotation- Overrides:
toStringin classObject
-
-