Class WebServiceAnnot
- java.lang.Object
-
- org.apache.axis2.jaxws.description.builder.WebServiceAnnot
-
- All Implemented Interfaces:
Annotation
public class WebServiceAnnot extends Object implements WebService
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<Annotation>annotationType()static WebServiceAnnotcreateFromAnnotation(Annotation annotation)static WebServiceAnnotcreateWebServiceAnnotImpl()static WebServiceAnnotcreateWebServiceAnnotImpl(String name, String targetNamespace, String serviceName, String wsdlLocation, String endpointInterface, String portName)StringendpointInterface()Stringname()StringportName()StringserviceName()voidsetEndpointInterface(String endpointInterface)voidsetName(String name)voidsetPortName(String portName)voidsetServiceName(String serviceName)voidsetTargetNamespace(String targetNamespace)voidsetWsdlLocation(String wsdlLocation)StringtargetNamespace()StringtoString()Convenience method for unit testing.StringwsdlLocation()-
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
-
createWebServiceAnnotImpl
public static WebServiceAnnot createWebServiceAnnotImpl()
-
createWebServiceAnnotImpl
public static WebServiceAnnot createWebServiceAnnotImpl(String name, String targetNamespace, String serviceName, String wsdlLocation, String endpointInterface, String portName)
-
createFromAnnotation
public static WebServiceAnnot createFromAnnotation(Annotation annotation)
-
name
public String name()
-
targetNamespace
public String targetNamespace()
-
serviceName
public String serviceName()
-
wsdlLocation
public String wsdlLocation()
-
endpointInterface
public String endpointInterface()
-
portName
public String portName()
-
annotationType
public Class<Annotation> annotationType()
- Specified by:
annotationTypein interfaceAnnotation
-
setEndpointInterface
public void setEndpointInterface(String endpointInterface)
- Parameters:
endpointInterface- The endpointInterface to set.
-
setName
public void setName(String name)
- Parameters:
name- The name to set.
-
setPortName
public void setPortName(String portName)
- Parameters:
portName- The portName to set.
-
setServiceName
public void setServiceName(String serviceName)
- Parameters:
serviceName- The serviceName to set.
-
setTargetNamespace
public void setTargetNamespace(String targetNamespace)
- Parameters:
targetNamespace- The targetNamespace to set.
-
setWsdlLocation
public void setWsdlLocation(String wsdlLocation)
- Parameters:
wsdlLocation- The wsdlLocation to set.
-
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
-
-