@NotMutable @ThreadSafety(level=COMPLETELY_THREADSAFE) public final class WhoAmIExtendedOperationHandler extends InMemoryExtendedOperationHandler
Constructor and Description |
---|
WhoAmIExtendedOperationHandler()
Creates a new instance of this extended operation handler.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getExtendedOperationHandlerName()
Retrieves the name that should be used for this extended operation handler.
|
java.util.List<java.lang.String> |
getSupportedExtendedRequestOIDs()
Retrieves a list of the extended request OIDs supported by this extended
operation handler.
|
ExtendedResult |
processExtendedOperation(InMemoryRequestHandler handler,
int messageID,
ExtendedRequest request)
Performs the appropriate processing for the provided extended request.
|
toString
public WhoAmIExtendedOperationHandler()
@NotNull public java.lang.String getExtendedOperationHandlerName()
getExtendedOperationHandlerName
in class InMemoryExtendedOperationHandler
@NotNull public java.util.List<java.lang.String> getSupportedExtendedRequestOIDs()
getSupportedExtendedRequestOIDs
in class InMemoryExtendedOperationHandler
@NotNull public ExtendedResult processExtendedOperation(@NotNull InMemoryRequestHandler handler, int messageID, @NotNull ExtendedRequest request)
processExtendedOperation
in class InMemoryExtendedOperationHandler
handler
- The in-memory request handler that accepted the extended
request.messageID
- The message ID for the LDAP message that the client used
to send the request.request
- The extended request to process, which will have a
request OID which matches one of the OIDs in the list
returned byt the
InMemoryExtendedOperationHandler.getSupportedExtendedRequestOIDs()
method.