Interface HTTPServletExtensionConfig
-
- All Superinterfaces:
GenericConfig
,GenericHTTPConfig
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface HTTPServletExtensionConfig extends GenericHTTPConfig
This interface defines a set of methods that may be used to obtain information about the general configuration for an HTTP servlet extension.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getHTTPConnectionHandlerConfigDN()
Retrieves the DN of the configuration object for the HTTP connection handler that created the servlet extension.java.lang.Object
getHTTPServerObject()
Retrieves a handle to an object that may be used to interact with the HTTP server itself.-
Methods inherited from interface com.unboundid.directory.sdk.common.config.GenericConfig
getConfigObjectDN, getConfigObjectName
-
Methods inherited from interface com.unboundid.directory.sdk.http.config.GenericHTTPConfig
getServerContext
-
-
-
-
Method Detail
-
getHTTPServerObject
@InternalUseOnly java.lang.Object getHTTPServerObject()
Retrieves a handle to an object that may be used to interact with the HTTP server itself. This is provided for internal use only by UnboundID-developed extensions, and no guarantee is made about either the type of object, or the stability of the type of that object.- Returns:
- A handle to an object that may be used by UnboundID-developed extensions to interact with the HTTP server itself.
-
getHTTPConnectionHandlerConfigDN
java.lang.String getHTTPConnectionHandlerConfigDN()
Retrieves the DN of the configuration object for the HTTP connection handler that created the servlet extension.- Returns:
- The DN of the configuration object for the HTTP connection handler that created the servlet extension.
-
-