Package org.opends.server.core
Class ExtendedOperation
java.lang.Object
org.opends.server.types.Operation
org.opends.server.core.ExtendedOperation
- All Implemented Interfaces:
PluginOperation
,PostCommitOperation
,PostOperationExtendedOperation
,PostOperationOperation
,PostResponseExtendedOperation
,PostResponseOperation
,PreOperationExtendedOperation
,PreOperationOperation
,PreParseExtendedOperation
,PreParseOperation
public final class ExtendedOperation
extends Operation
implements PreParseExtendedOperation, PreOperationExtendedOperation, PostOperationExtendedOperation, PostResponseExtendedOperation
This class defines an extended operation, which can perform virtually any kind of task.
-
Field Summary
Fields inherited from class org.opends.server.types.Operation
backend, context, out, pluginConfigManager, request, result, serverContext
-
Constructor Summary
ConstructorsConstructorDescriptionExtendedOperation
(RequestContext context, LocalBackend<?> backend, ExtendedRequest<?> request, Consumer<Response> out, ServerContext serverContext) Creates a new extended operation. -
Method Summary
Modifier and TypeMethodDescriptionReturns the request associated to this operation.Retrieves the OID for the request associated with this extended operation.Retrieves the value for the request associated with this extended operation.protected void
Invokes any applicable post-response plugins.protected void
Invokes any applicable pre-parse plugins.protected Result
operationToResult
(Result result) Generates a result for this operation.protected Result
runImpl()
Performs the work of actually processing this operation.void
setRequestOID
(String requestOID) Specifies the OID for the request associated with this extended operation.void
setRequestValue
(ByteString requestValue) Specifies the value for the request associated with this extended operation.void
toString
(StringBuilder buffer) Appends a string representation of this operation to the provided buffer.Methods inherited from class org.opends.server.types.Operation
addAdditionalLogItem, addPasswordPolicyWarningToLog, addPostReadResponse, addPreReadResponse, addRequestControl, addResponseControl, checkAttributeConformsToSyntax, checkIfBackendIsWritable, checkIfCanceled, createLdapException, equals, evaluateProxyAuthControls, filterNonDisclosableMatchedDn, getAccessControlHandler, getAdditionalLogItems, getAttachment, getAttachments, getAuthorizationDN, getAuthorizationEntry, getClientConnection, getConnectionID, getMessageID, getOperationID, getProxiedAuthorizationDN, getRequestContext, getRequestControl, getRequestControls, getResponseControls, getResult, getResultCode, hashCode, hasPrivilege, hasRequestControl, isInternalOperation, isProxyAuthzControl, isSynchronizationOperation, mustCheckSchema, removeAllDisallowedControls, removeResponseControl, run, sendIntermediateResponse, sendResult, setAttachment, setResult, setResult, toString, trySetLargestEntrySize
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.opends.server.types.operation.PluginOperation
checkIfCanceled, getAttachment, getAttachments, getClientConnection, getConnectionID, getMessageID, getOperationID, getRequestControl, getRequestControl, getRequestControls, getResponseControls, hasPrivilege, isInternalOperation, isSynchronizationOperation, setAttachment, toString
Methods inherited from interface org.opends.server.types.operation.PostOperationOperation
addAdditionalLogItem, addResponseControl, getAdditionalLogItems, getAuthorizationDN, getResultCode, removeResponseControl, setResult, setResult
Methods inherited from interface org.opends.server.types.operation.PreOperationOperation
addAdditionalLogItem, addResponseControl, getAdditionalLogItems, getAuthorizationDN, removeResponseControl, sendIntermediateResponse
Methods inherited from interface org.opends.server.types.operation.PreParseOperation
addAdditionalLogItem, addRequestControl, addResponseControl, getAdditionalLogItems, removeResponseControl, sendIntermediateResponse
-
Constructor Details
-
ExtendedOperation
public ExtendedOperation(RequestContext context, LocalBackend<?> backend, ExtendedRequest<?> request, Consumer<Response> out, ServerContext serverContext) Creates a new extended operation.- Parameters:
context
- The context.backend
- The local backend in which this request is to be processed.request
- The request.out
- A consumer responsible for sending responses to the client.serverContext
- the server context
-
-
Method Details
-
getRequestOID
Retrieves the OID for the request associated with this extended operation.- Specified by:
getRequestOID
in interfacePostOperationExtendedOperation
- Specified by:
getRequestOID
in interfacePostResponseExtendedOperation
- Specified by:
getRequestOID
in interfacePreOperationExtendedOperation
- Specified by:
getRequestOID
in interfacePreParseExtendedOperation
- Returns:
- The OID for the request associated with this extended operation.
-
setRequestOID
Specifies the OID for the request associated with this extended operation. This should only be called by pre-parse plugins.- Specified by:
setRequestOID
in interfacePreParseExtendedOperation
- Parameters:
requestOID
- The OID for the request associated with this extended operation.
-
getRequestValue
Retrieves the value for the request associated with this extended operation.- Specified by:
getRequestValue
in interfacePostOperationExtendedOperation
- Specified by:
getRequestValue
in interfacePostResponseExtendedOperation
- Specified by:
getRequestValue
in interfacePreOperationExtendedOperation
- Specified by:
getRequestValue
in interfacePreParseExtendedOperation
- Returns:
- The value for the request associated with this extended operation.
-
setRequestValue
Specifies the value for the request associated with this extended operation. This should only be called by pre-parse plugins.- Specified by:
setRequestValue
in interfacePreParseExtendedOperation
- Parameters:
requestValue
- The value for the request associated with this extended operation.
-
getRequest
Description copied from class:Operation
Returns the request associated to this operation.- Specified by:
getRequest
in interfacePluginOperation
- Overrides:
getRequest
in classOperation
- Returns:
- The request associated to this operation.
-
runImpl
Description copied from class:Operation
Performs the work of actually processing this operation.- Specified by:
runImpl
in classOperation
- Returns:
null
if the result is delayed (e.g. persistent search),Result
otherwise.- Throws:
LdapException
- If an error occurred when processing the operation.
-
invokePreParsePlugins
Description copied from class:Operation
Invokes any applicable pre-parse plugins.- Specified by:
invokePreParsePlugins
in classOperation
- Throws:
LdapException
- If an error occurred when invoking the pre-parse plugins.
-
invokePostResponsePlugins
protected void invokePostResponsePlugins()Description copied from class:Operation
Invokes any applicable post-response plugins.- Specified by:
invokePostResponsePlugins
in classOperation
-
operationToResult
Description copied from class:Operation
Generates a result for this operation.- Overrides:
operationToResult
in classOperation
- Parameters:
result
- The result to convert.- Returns:
- The result.
-
toString
Description copied from interface:PluginOperation
Appends a string representation of this operation to the provided buffer.- Specified by:
toString
in interfacePluginOperation
- Specified by:
toString
in classOperation
- Parameters:
buffer
- The buffer into which a string representation of this operation should be appended.
-