All Packages Class Hierarchy This Package Previous Next Index
Class oracle.soap.server.ProviderDeploymentDescriptor
java.lang.Object
|
+----oracle.soap.server.ProviderDeploymentDescriptor
- public final class ProviderDeploymentDescriptor
- extends Object
- implements 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.
-
ProviderDeploymentDescriptor()
- Construct a new instance of a provider descriptor.
-
fromXML(Element)
- Build a provider descriptor from the given document.
-
getClassname()
- Returns the name of the class that implements this provider.
-
getId()
- Returns the unique id for this provider.
-
getOptions()
- Get the provider-specific options.
-
getProviderType()
- Returns the provider type.
-
setClassname(String)
- Set the name of the class that implements this provider.
-
setId(String)
- Set the provider id.
-
setOptions(Hashtable)
- Set the options.
-
setProviderType(String)
- Set the provider type.
-
toString()
-
-
toXML(Writer)
- Write out the service deployment descriptor as XML.
ProviderDeploymentDescriptor
public ProviderDeploymentDescriptor()
- Construct a new instance of a provider descriptor.
setId
public void setId(String id)
- Set the provider id.
- Parameters:
- id
- The unique provider id.
getId
public String getId()
- Returns the unique id for this provider.
- Returns:
- This provider's unique id.
setClassname
public void setClassname(String classname)
- Set the name of the class that implements this provider.
- Parameters:
- classname
- The name of the implementing class.
getClassname
public String getClassname()
- Returns the name of the class that implements this provider.
- Returns:
- The classname.
setProviderType
public void setProviderType(String providerType)
- Set the provider type.
- Parameters:
- providerType
- The provider type.
getProviderType
public String getProviderType()
- Returns the provider type.
- Returns:
- This provider's type.
setOptions
public void setOptions(Hashtable options)
- Set the options.
- Parameters:
- options
- The name-value pairs that represent the provider implementation-specific
options for this service.
getOptions
public 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(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(Writer pr)
- Write out the service deployment descriptor as XML.
- Parameters:
- pr
- The writer for the XML output.
toString
public String toString()
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index