oracle.soap.server
Class ProviderDeploymentDescriptor
java.lang.Object
|
+--oracle.soap.server.DeploymentDescriptor
|
+--oracle.soap.server.ProviderDeploymentDescriptor
- All Implemented Interfaces:
- java.io.Serializable
- public final class ProviderDeploymentDescriptor
- extends DeploymentDescriptor
- implements java.io.Serializable
ProviderDeploymentDescriptor
defines the deployment information
for a specific provider. Different providers may be deployed using
the same implementation and be distinguished only by their provider
descriptor.
- See Also:
- Serialized Form
Type | Method |
static ProviderDeploymentDescriptor |
fromXML(org.w3c.dom.Element root)
Build a provider descriptor from the given document. |
java.lang.String |
getClassname()
Returns the name of the class that implements this provider. |
java.util.Hashtable |
getOptions()
Get the provider-specific options. |
void |
setClassname(java.lang.String classname)
Set the name of the class that implements this provider. |
void |
setOptions(java.util.Hashtable options)
Set the options. |
java.lang.String |
toString()
|
void |
toXML(java.io.Writer pr)
Write out the service deployment descriptor as XML. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ProviderDeploymentDescriptor
public ProviderDeploymentDescriptor()
- Construct a new instance of a provider descriptor.
setClassname
public void setClassname(java.lang.String classname)
- Set the name of the class that implements this provider.
- Parameters:
classname
- The name of the implementing class.
getClassname
public java.lang.String getClassname()
- Returns the name of the class that implements this provider.
- Returns:
- The classname.
setOptions
public void setOptions(java.util.Hashtable options)
- Set the options.
- Parameters:
options
- The name-value pairs that represent the provider implementation-specific
options for this service.
getOptions
public java.util.Hashtable getOptions()
- Get the provider-specific options.
- Returns:
- The name-value pairs that represent the provider-specific options
for this service.
fromXML
public static ProviderDeploymentDescriptor fromXML(org.w3c.dom.Element root)
- Build a provider descriptor from the given document.
- Parameters:
root
- The root of the document that represents the XML provider descriptor.- Returns:
- The
ProviderDeploymentDescriptor
for the given XML.
toXML
public void toXML(java.io.Writer pr)
- Write out the service deployment descriptor as XML.
- Parameters:
pr
- The writer for the XML output.
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object
Copyright © 2001 Oracle SOAP. All Rights Reserved.