Methods Summary |
---|
public java.lang.String | getAppID()Returns the name of the application or stand alone module that has
this web service.
return (getString(WebServiceEndpointInfo.APP_ID_KEY));
|
public java.lang.String | getApplicationXML()Gets the application.xml file .
return getString(WebServiceEndpointInfo.APPLICATION_XML_KEY);
|
public java.lang.String | getBundleName()Returns the module name within a EAR or null if it is a stand alone
module.
return (getString(WebServiceEndpointInfo.BUNDLE_NAME_KEY));
|
public java.lang.String[] | getDescriptors()Returns the descriptor . The descriptors include WSDL,
webservices.xml and mapping file. If the alt WSDL is specified
in the archive, the overridden (correct) WSDL file is returned.
String [] list = new String[3];
list[0] = getString(WebServiceEndpointInfo.WSDL_FILE_KEY);
list[1] = getString(WebServiceEndpointInfo.WEB_SERVICES_FILE_KEY);
list[2] = getString(WebServiceEndpointInfo.MAPPING_FILE_KEY);
return list;
|
public java.lang.String | getEJBXML()Gets the ejb.xml file .
return getString(WebServiceEndpointInfo.EJB_XML_KEY);
|
public java.lang.String | getEndpointURI()Returns the relative URI of this endpoint.
return (getString(WebServiceEndpointInfo.END_POINT_URI_KEY));
|
public java.lang.String | getMappingFile()Returns the mapping file .
return (getString(WebServiceEndpointInfo.MAPPING_FILE_KEY));
|
public java.lang.String | getName()Returns the name of the WebService.
return (getString(WebServiceEndpointInfo.NAME_KEY));
|
public java.lang.String | getServiceImplClass()Returns the implementation Ejb or Servlet class name of this web service.
return (getString(WebServiceEndpointInfo.SERVICE_IMPL_CLASS_KEY));
|
public java.lang.String | getServiceImplName()Returns the implementation Ejb or Servlet name of this web service.
return (getString(WebServiceEndpointInfo.SERVICE_IMPL_NAME_KEY));
|
public java.lang.String | getServiceImplType()Returns the implementation type of this web service.
return (getString(WebServiceEndpointInfo.SERVICE_IMPL_TYPE_KEY));
|
public java.lang.String | getServiceURL()Returns the service URL of this endpoint.
return (getString(WebServiceEndpointInfo.SERVICE_URL_KEY));
|
public java.lang.String | getSunEJBXML()Gets the sun-ejb.xml file .
return getString(WebServiceEndpointInfo.SUN_EJB_XML_KEY);
|
public java.lang.String | getSunWebXML()Gets the sun-web.xml file .
return getString(WebServiceEndpointInfo.SUN_WEB_XML_KEY);
|
public java.lang.String | getWSDLFile()Returns the WSDL file.
return (getString(WebServiceEndpointInfo.WSDL_FILE_KEY));
|
public java.lang.String | getWebXML()Gets the web.xml file .
return getString(WebServiceEndpointInfo.WEB_XML_KEY);
|
public java.lang.String | getWebservicesFile()Returns the webservices.xml file .
return (getString(WebServiceEndpointInfo.WEB_SERVICES_FILE_KEY));
|
public boolean | isAppStandaloneModule()Returns true if this web service belongs to a stand alone module.
return getBoolean(WebServiceEndpointInfo.IS_STAND_ALONE_MODULE_KEY).booleanValue();
|
public boolean | isSecure()Returns true if this web service is secured or not.
Corresponds to the {@link #IS_SECURE_KEY} key.
return getBoolean(WebServiceEndpointInfo.IS_SECURE_KEY).booleanValue();
|
public void | setAppID(java.lang.String name)Sets the name of the application or stand alone module that has
this web service.
putField(WebServiceEndpointInfo.APP_ID_KEY, name);
|
public void | setApplicationXML(java.lang.String applicationXML)Sets the application.xml file .
putField(WebServiceEndpointInfo.APPLICATION_XML_KEY,
applicationXML);
|
public void | setBundleName(java.lang.String name)Sets the module name within a EAR or null if it is a stand alone
module.
putField(WebServiceEndpointInfo.BUNDLE_NAME_KEY, name);
|
public void | setEJBXML(java.lang.String EJBXML)Sets the ejb.xml file .
putField(WebServiceEndpointInfo.EJB_XML_KEY, EJBXML);
|
public void | setEndpointURI(java.lang.String uri)Sets the relative URI of this endpoint.
putField(WebServiceEndpointInfo.END_POINT_URI_KEY, uri);
|
public void | setIsAppStandaloneModule(boolean isAppStandAloneModule)Sets the boolean indicating web service belongs to a stand alone module.
putField(WebServiceEndpointInfo.IS_STAND_ALONE_MODULE_KEY, new
Boolean(isAppStandAloneModule) );
|
public void | setIsSecure(boolean isSec)Returns true if this web service is secured or not.
Corresponds to the {@link #IS_SECURE_KEY} key.
putField(WebServiceEndpointInfo.IS_SECURE_KEY, new
Boolean(isSec) );
|
public void | setMappingFile(java.lang.String mapFile)Sets the mapping file .
putField(WebServiceEndpointInfo.MAPPING_FILE_KEY, mapFile);
|
public void | setName(java.lang.String name)Sets the name of the WebService.
putField(WebServiceEndpointInfo.NAME_KEY, name);
|
public void | setServiceImplClass(java.lang.String implClassName)Sets the implementation Ejb or Servlet class name of this web service.
putField(WebServiceEndpointInfo.SERVICE_IMPL_CLASS_KEY, implClassName);
|
public void | setServiceImplName(java.lang.String name)Sets the implementation Ejb or Servlet name of this web service.
putField(WebServiceEndpointInfo.SERVICE_IMPL_NAME_KEY, name);
|
public void | setServiceImplType(java.lang.String type)Sets the implementation type of this web service.
putField(WebServiceEndpointInfo.SERVICE_IMPL_TYPE_KEY, type);
|
public void | setServiceURL(java.lang.String url)Sets the service URL of this endpoint.
putField(WebServiceEndpointInfo.SERVICE_URL_KEY, url);
|
public void | setSunEJBXML(java.lang.String sunEJBXML)Sets the sun-ejb.xml file .
putField(WebServiceEndpointInfo.SUN_EJB_XML_KEY,
sunEJBXML);
|
public void | setSunWebXML(java.lang.String sunWebXML)Sets the sun-web.xml file .
putField(WebServiceEndpointInfo.SUN_WEB_XML_KEY,
sunWebXML);
|
public void | setWSDLFile(java.lang.String wsdl)Sets the WSDL file .
putField(WebServiceEndpointInfo.WSDL_FILE_KEY, wsdl);
|
public void | setWebXML(java.lang.String webXML)Sets the web.xml file .
putField(WebServiceEndpointInfo.WEB_XML_KEY, webXML);
|
public void | setWebservicesFile(java.lang.String webservicesFile)Sets the webservices.xml file .
putField(WebServiceEndpointInfo.WEB_SERVICES_FILE_KEY,
webservicesFile);
|
protected boolean | validate()
return (true);
|