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.


Constructor Index

 o ProviderDeploymentDescriptor()
Construct a new instance of a provider descriptor.

Method Index

 o fromXML(Element)
Build a provider descriptor from the given document.
 o getClassname()
Returns the name of the class that implements this provider.
 o getId()
Returns the unique id for this provider.
 o getOptions()
Get the provider-specific options.
 o getProviderType()
Returns the provider type.
 o setClassname(String)
Set the name of the class that implements this provider.
 o setId(String)
Set the provider id.
 o setOptions(Hashtable)
Set the options.
 o setProviderType(String)
Set the provider type.
 o toString()
 o toXML(Writer)
Write out the service deployment descriptor as XML.

Constructors

 o ProviderDeploymentDescriptor
 public ProviderDeploymentDescriptor()
Construct a new instance of a provider descriptor.

Methods

 o setId
 public void setId(String id)
Set the provider id.

Parameters:
id - The unique provider id.
 o getId
 public String getId()
Returns the unique id for this provider.

Returns:
This provider's unique id.
 o setClassname
 public void setClassname(String classname)
Set the name of the class that implements this provider.

Parameters:
classname - The name of the implementing class.
 o getClassname
 public String getClassname()
Returns the name of the class that implements this provider.

Returns:
The classname.
 o setProviderType
 public void setProviderType(String providerType)
Set the provider type.

Parameters:
providerType - The provider type.
 o getProviderType
 public String getProviderType()
Returns the provider type.

Returns:
This provider's type.
 o 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.
 o getOptions
 public Hashtable getOptions()
Get the provider-specific options.

Returns:
The name-value pairs that represent the provider-specific options for this service.
 o 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.
 o toXML
 public void toXML(Writer pr)
Write out the service deployment descriptor as XML.

Parameters:
pr - The writer for the XML output.
 o toString
 public String toString()
Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index