Methods Summary |
---|
public java.lang.String | getAppId()Returns the name of the application or stand alone module that has
this web service.
return wsAppId;
|
public java.lang.String | getBundleName()Returns the module name within a EAR or null if it is a stand alone
module.
return wsBundleName;
|
public java.lang.String[] | getDescriptorLocations()Returns the descriptor locations. The descriptors include WSDL,
webservices.xml and mapping file. If the alt WSDL location is specified
in the archive, the overridden (correct) WSDL file location is returned.
String [] list = new String[3];
list[0] = wsWSDL;
list[1] = wsWebServices;
list[2] = wsMapping;
return list;
|
public java.lang.String | getEndpointUri()Returns the relative URI of this endpoint.
return wsUri;
|
public java.lang.String | getMappingFileLocation()Returns the mapping file location.
return wsMapping;
|
public java.lang.String | getName()Returns the name of the WebService.
return wsName;
|
public java.lang.String | getServiceImplClass()Returns the implementation Ejb or Servlet class name of this web service.
return wsImplClass;
|
public java.lang.String | getServiceImplName()Returns the implementation Ejb or Servlet name of this web service.
return wsImplName;
|
public java.lang.String | getServiceImplType()Returns the implementation type of this web service.
return wsImplType;
|
public java.lang.String | getWSDLFileLocation()Returns the WSDL file location.
return wsWSDL;
|
public java.lang.String | getWebservicesFileLocation()Returns the webservices.xml file location.
return wsWebServices;
|
public boolean | isAppStandAloneModule()Returns true if this web service belongs to a stand alone module.
return wsAppStandAloneModule;
|
public java.lang.String | toString()Provides the string representation for this web sevice end point.
return "Web Service Name: " + wsName + " URI: " + wsUri +
" Application Id " + wsAppId + " isStandAlone?: " +
wsAppStandAloneModule + " Bundle Name: " + wsBundleName +
" WSDL location " + wsWSDL + " Mapping file location: " +
wsMapping + " webservices.xml location: " + wsWebServices +
" impl Type " + wsImplType + " impl Name " + wsImplName +
" impl Class " + wsImplClass;
|