All Packages Class Hierarchy This Package Previous Next Index
Class oracle.soap.server.ContainerContext
java.lang.Object
|
+----oracle.soap.server.ContainerContext
- public class ContainerContext
- extends Object
ContainerContext
defines the context of the container
in which the SOAP server is running.
The actual content depends on the environment in which the server is
running, such as in a servlet engine. This class should contain
only container-specific content.
-
SERVLET_CONTAINER
- The value for a servlet container type.
-
ContainerContext()
-
-
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.
-
getContainerType()
- Returns the container type.
-
getHttpServlet()
- Returns the HTTP servlet if the container type is SERVLET_CONTAINER.
-
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.
-
setContainerType(String)
- Set the container type.
-
setHttpServlet(HttpServlet)
- Set the HTTP servlet for a SOAP server running in a SERVLET_CONTAINER
type of container.
SERVLET_CONTAINER
public static final String SERVLET_CONTAINER
- The value for a servlet container type.
ContainerContext
public ContainerContext()
setContainerType
public void setContainerType(String containerType)
- Set the container type.
- Parameters:
- containerType
- The type of container in which the SOAP server is running.
getContainerType
public String getContainerType()
- Returns the container type.
- Returns:
- The type of container in which the SOAP server is running.
getHttpServlet
public HttpServlet getHttpServlet()
- Returns the HTTP servlet if the container type is SERVLET_CONTAINER.
- Returns:
- The
HttpServlet
that is processing the SOAP request, or
null
if the servlet attribute is not set.
setHttpServlet
public void setHttpServlet(HttpServlet servlet)
- Set the HTTP servlet for a SOAP server running in a SERVLET_CONTAINER
type of container.
- Parameters:
- servlet
- The
HttpServlet
that is processing the SOAP request.
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