|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.soap.server.SOAPServerContext
SOAPServerContext
defines the context of the SOAP server
that is independent of the type of container in which the server is
running.
Constructor Summary | |
SOAPServerContext()
|
Method Summary | |
java.lang.Object |
getAttribute(java.lang.String name)
Returns the attribute with the given name, or null if there is no attribute by that name. |
java.util.Enumeration |
getAttributeNames()
Returns an Enumeration containing the attribute names available within this SOAP context. |
java.util.Hashtable |
getGlobalContext()
Returns the global context. |
Logger |
getLogger()
Returns the SOAP logger. |
void |
removeAttribute(java.lang.String name)
Removes the attribute with the given name from the context. |
void |
setAttribute(java.lang.String name,
java.lang.Object object)
Binds an object to a given attribute name in this SOAP context. |
void |
setGlobalContext(java.util.Hashtable globalContext)
Set the global context, which contains SOAP server-wide objects. |
void |
setLogger(Logger logger)
Set the logger, which is used for text-based logging of informational and debug messages. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public SOAPServerContext()
Method Detail |
public java.util.Hashtable getGlobalContext()
null
if the attribute is not set.public void setGlobalContext(java.util.Hashtable globalContext)
globalContext
- The global context.public void setLogger(Logger logger)
logger
- The SOAP logger.public Logger getLogger()
public java.lang.Object getAttribute(java.lang.String name)
name
- A String
specifying the name of the attribute.null
if no attribute exists matching the given name.getAttributeNames()
public java.util.Enumeration getAttributeNames()
Enumeration
of attribute names.getAttribute(java.lang.String)
public void setAttribute(java.lang.String name, java.lang.Object object)
name
- A non-null String
specifying the name of the attribute.object
- An non-null Object
representing the attribute to be bound.public void removeAttribute(java.lang.String name)
name
- A String
specifying the name of the attribute to be
removed.object
- An Object
representing the attribute to be bound.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |