All Packages Class Hierarchy This Package Previous Next Index
Class oracle.soap.server.SOAPServerContext
java.lang.Object
|
+----oracle.soap.server.SOAPServerContext
- public class SOAPServerContext
- extends Object
SOAPServerContext
defines the context of the SOAP server
that is independent of the type of container in which the server is
running.
-
SOAPServerContext()
-
-
getAttribute(String)
- Returns the attribute with the given name, or null if there
is no attribute by that name.
-
getAttributeNames()
- Returns an Enumeration containing the attribute names available
within this SOAP context.
-
getGlobalContext()
- Returns the global context.
-
getLogger()
- Returns the SOAP logger.
-
removeAttribute(String)
- Removes the attribute with the given name from the context.
-
setAttribute(String, Object)
- Binds an object to a given attribute name in this SOAP context.
-
setGlobalContext(Hashtable)
- Set the global context, which contains SOAP server-wide objects.
-
setLogger(Logger)
- Set the logger, which is used for text-based logging of
informational and debug messages.
SOAPServerContext
public SOAPServerContext()
getGlobalContext
public Hashtable getGlobalContext()
- Returns the global context.
- Returns:
- The global context that contains SOAP server-wide objects, or
null
if the attribute is not set.
setGlobalContext
public void setGlobalContext(Hashtable globalContext)
- Set the global context, which contains SOAP server-wide objects.
- Parameters:
- globalContext
- The global context.
setLogger
public void setLogger(Logger logger)
- Set the logger, which is used for text-based logging of
informational and debug messages.
- Parameters:
- logger
- The SOAP logger.
getLogger
public Logger getLogger()
- Returns the SOAP logger.
- Returns:
- The SOAP logger, which is used to log informational and debug
messages.
getAttribute
public Object getAttribute(String name)
- Returns the attribute with the given name, or null if there
is no attribute by that name.
- Parameters:
- name
- A
String
specifying the name of the attribute.
- Returns:
- An Object containing the value of the attribute, or
null
if no attribute exists matching the given name.
- See Also:
- getAttributeNames
getAttributeNames
public Enumeration getAttributeNames()
- Returns an Enumeration containing the attribute names available
within this SOAP context.
- Returns:
- An
Enumeration
of attribute names.
- See Also:
- getAttribute
setAttribute
public void setAttribute(String name,
Object object)
- Binds an object to a given attribute name in this SOAP context.
If the name specified is already used for an attribute, this method
will remove the old attribute and bind the name to the new attribute.
Neither the name nor the object may be null.
- Parameters:
- name
- A non-null
String
specifying the name of the attribute.
- object
- An non-null
Object
representing the attribute to be bound.
removeAttribute
public void removeAttribute(String name)
- Removes the attribute with the given name from the context.
After removal, subsequent calls to getAttribute(java.lang.String)
to retrieve the attribute's value will return null.
- Parameters:
- name
- A
String
specifying the name of the attribute to be
removed.
- object
- An
Object
representing the attribute to be bound.
All Packages Class Hierarchy This Package Previous Next Index