@Extensible @DirectoryProxyServerExtension(appliesToLocalContent=false, appliesToRemoteContent=true) @ThreadSafety(level=INTERFACE_THREADSAFE) public abstract class ProxiedExtendedOperationHandler extends java.lang.Object implements UnboundIDExtension, Reconfigurable<ProxiedExtendedOperationHandlerConfig>, ExampleUsageProvider
      dsconfig create-extended-operation-handler \
           --handler-name "{handler-name}" \
           --type third-party-proxied \
           --set enabled:true \
           --set "extension-class:{class-name}" \
           --set "extension-argument:{name=value}"
 
 where "{handler-name}" is the name to use for the proxied extended
 operation handler instance, "{class-name}" is the fully-qualified name
 of the Java class that extends com.unboundid.directory.sdk.proxy.api.ProxiedExtendedOperationHandler, and
 "{name=value}" represents name-value pairs for any arguments to
 provide to the proxied extended operation handler.  If multiple arguments
 should be provided to the proxied extended operation handler, then the
 "--set extension-argument:{name=value}" option should be
 provided multiple times.| Constructor and Description | 
|---|
| ProxiedExtendedOperationHandler()Creates a new instance of this proxied extended operation handler. | 
| Modifier and Type | Method and Description | 
|---|---|
| com.unboundid.ldap.sdk.ResultCode | applyConfiguration(ProxiedExtendedOperationHandlerConfig config,
                  com.unboundid.util.args.ArgumentParser parser,
                  java.util.List<java.lang.String> adminActionsRequired,
                  java.util.List<java.lang.String> messages)Attempts to apply the configuration from the provided argument parser to
 this extension. | 
| abstract com.unboundid.ldap.sdk.ExtendedResult | createFinalResult(OperationContext operationContext,
                 ExtendedRequest request,
                 java.util.List<com.unboundid.ldap.sdk.ExtendedResult> results)Creates the final extended result to return to the client from the provided
 list of results obtained from the set of entry-balanced and/or proxying
 request processors to which the request was forwarded. | 
| void | defineConfigArguments(com.unboundid.util.args.ArgumentParser parser)Updates the provided argument parser to define any configuration arguments
 which may be used by this extension. | 
| void | finalizeProxiedExtendedOperationHandler()Performs any cleanup which may be necessary when this proxied extended
 operation handler is to be taken out of service. | 
| java.util.Map<java.util.List<java.lang.String>,java.lang.String> | getExamplesArgumentSets()Retrieves a map containing examples of configurations that may be used for
 this extension. | 
| abstract java.lang.String | getExtendedOperationName(java.lang.String oid)Retrieves the name of the extended operation with the provided OID. | 
| abstract java.lang.String[] | getExtensionDescription()Retrieves a human-readable description for this extension. | 
| abstract java.lang.String | getExtensionName()Retrieves a human-readable name for this extension. | 
| java.util.Set<java.lang.String> | getSupportedControls()Retrieves the OIDs of any controls supported by this proxied extended
 operation handler. | 
| abstract java.util.Set<java.lang.String> | getSupportedExtensions()Retrieves the OIDs of the extended operation types supported by this
 proxied extended operation handler. | 
| java.util.Set<java.lang.String> | getSupportedFeatures()Retrieves the OIDs of any features supported by this proxied extended
 operation handler that should be advertised in the server root DSE. | 
| void | initializeProxiedExtendedOperationHandler(ProxyServerContext serverContext,
                                         ProxiedExtendedOperationHandlerConfig config,
                                         com.unboundid.util.args.ArgumentParser parser)Initializes this proxied extended operation handler. | 
| boolean | isConfigurationAcceptable(ProxiedExtendedOperationHandlerConfig config,
                         com.unboundid.util.args.ArgumentParser parser,
                         java.util.List<java.lang.String> unacceptableReasons)Indicates whether the configuration represented by the provided argument
 parser is acceptable for use by this extension. | 
| abstract com.unboundid.ldap.sdk.ExtendedResult | mergeEntryBalancedResults(OperationContext operationContext,
                         ExtendedRequest request,
                         EntryBalancingRequestProcessor requestProcessor,
                         java.util.List<com.unboundid.util.ObjectPair<com.unboundid.ldap.sdk.ExtendedResult,BackendSet>> results,
                         boolean fallbackAvailable)Obtains the extended result that should be used as a result of processing
 an operation in one or more entry-balanced backend sets, or throws an
 exception to indicate that the request should instead be forwarded to the
 fallback server set(s). | 
| abstract com.unboundid.util.ObjectPair<java.util.Set<BackendSet>,java.util.Set<BackendSet>> | selectBackendSets(OperationContext operationContext,
                 ExtendedRequest request,
                 EntryBalancingRequestProcessor requestProcessor)Selects the entry-balancing backend set(s) to which the provided extended
 request should be forwarded. | 
| abstract boolean | shouldForward(OperationContext operationContext,
             ExtendedRequest request,
             ProxyingRequestProcessor requestProcessor)Indicates whether the provided extended request should be forwarded to one
 of the servers associated with the provided proxying request processor. | 
public ProxiedExtendedOperationHandler()
initializeProxiedExtendedOperationHandler method.public abstract java.lang.String getExtensionName()
getExtensionName in interface UnboundIDExtensionpublic abstract java.lang.String[] getExtensionDescription()
getExtensionDescription in interface UnboundIDExtensionnull
          or an empty array if no description should be available.public void defineConfigArguments(com.unboundid.util.args.ArgumentParser parser) throws com.unboundid.util.args.ArgumentException
defineConfigArguments in interface Configurableparser - The argument parser to be updated with the configuration
                 arguments which may be used by this extension.com.unboundid.util.args.ArgumentException - If a problem is encountered while updating the
                             provided argument parser.public void initializeProxiedExtendedOperationHandler(ProxyServerContext serverContext, ProxiedExtendedOperationHandlerConfig config, com.unboundid.util.args.ArgumentParser parser) throws com.unboundid.ldap.sdk.LDAPException
serverContext - A handle to the server context for the server in
                        which this extension is running.config - The general configuration for this extended
                        operation handler.parser - The argument parser which has been initialized from
                        the configuration for this extended operation
                        handler.com.unboundid.ldap.sdk.LDAPException - If a problem occurs while initializing this
                         extended operation handler.public boolean isConfigurationAcceptable(ProxiedExtendedOperationHandlerConfig config, com.unboundid.util.args.ArgumentParser parser, java.util.List<java.lang.String> unacceptableReasons)
isConfigurationAcceptable in interface Reconfigurable<ProxiedExtendedOperationHandlerConfig>config - The general configuration for this extension.parser - The argument parser that has been used to
                              parse the proposed configuration for this
                              extension.unacceptableReasons - A list to which messages may be added to
                              provide additional information about why the
                              provided configuration is not acceptable.true if the configuration in the provided argument parser
          appears to be acceptable, or false if not.public com.unboundid.ldap.sdk.ResultCode applyConfiguration(ProxiedExtendedOperationHandlerConfig config, com.unboundid.util.args.ArgumentParser parser, java.util.List<java.lang.String> adminActionsRequired, java.util.List<java.lang.String> messages)
applyConfiguration in interface Reconfigurable<ProxiedExtendedOperationHandlerConfig>config - The general configuration for this extension.parser - The argument parser that has been used to
                               parse the new configuration for this
                               extension.adminActionsRequired - A list to which messages may be added to
                               provide additional information about any
                               additional administrative actions that may
                               be required to apply some of the
                               configuration changes.messages - A list to which messages may be added to
                               provide additional information about the
                               processing performed by this method.SUCCESS should be
          used to indicate that all processing completed successfully.  Any
          other result will indicate that a problem occurred during
          processing.public void finalizeProxiedExtendedOperationHandler()
public abstract java.lang.String getExtendedOperationName(java.lang.String oid)
oid - The OID of the extended operation for which to retrieve the
              corresponding name.null if the specified OID is not recognized by this
          proxied extended operation handler.public abstract java.util.Set<java.lang.String> getSupportedExtensions()
null or
          empty, and the contents of the set returned must not change over
          the life of this proxied extended operation handler.public java.util.Set<java.lang.String> getSupportedControls()
null or empty if this
          proxied extended operation handler does not support any controls.public java.util.Set<java.lang.String> getSupportedFeatures()
null or empty if this
          proxied extended operation handler does not support any features.public abstract com.unboundid.util.ObjectPair<java.util.Set<BackendSet>,java.util.Set<BackendSet>> selectBackendSets(OperationContext operationContext, ExtendedRequest request, EntryBalancingRequestProcessor requestProcessor) throws com.unboundid.ldap.sdk.LDAPException
null or empty sets.  If it is possible to definitively determine
 the set of backend sets to which the operation should be forwarded and no
 fallback option is required, then the first element of the returned object
 should be populated with a non-empty set and the second element should be
 null or empty.operationContext - The operation context for the extended operation.request - The extended request to be processed.requestProcessor - The entry-balancing request processor in which
                           the extended operation should be processed.null (or it may be an ObjectPair with
          both elements empty or null) if the request should not be
          forwarded to any backend set for the entry-balancing request
          processor.com.unboundid.ldap.sdk.LDAPException - If the request should not be forwarded to any of
                         the backend sets for the provided entry-balancing
                         request processor, and the result contained in the
                         exception should be used instead.public abstract com.unboundid.ldap.sdk.ExtendedResult mergeEntryBalancedResults(OperationContext operationContext, ExtendedRequest request, EntryBalancingRequestProcessor requestProcessor, java.util.List<com.unboundid.util.ObjectPair<com.unboundid.ldap.sdk.ExtendedResult,BackendSet>> results, boolean fallbackAvailable) throws com.unboundid.ldap.sdk.LDAPException
selectBackendSets(com.unboundid.directory.sdk.common.types.OperationContext, com.unboundid.directory.sdk.common.operation.ExtendedRequest, com.unboundid.directory.sdk.proxy.types.EntryBalancingRequestProcessor) method indicates that multiple backend sets
 should be accessed in the course of processing an extended request.operationContext - The operation context for the extended
                            operation.request - The extended request that was processed.requestProcessor - The entry-balancing request processor in which
                            the extended operation was processed.results - A list of the extended results obtained from
                            processing the operation in the selected set of
                            backend sets, with each result paired with
                            information about the backend set from which it
                            was obtained.fallbackAvailable - Indicates whether a fallback group of backend
                            sets is available and may be used as a second
                            attempt at processing the operation if the
                            result from the initial attempt is not
                            acceptable.null.com.unboundid.ldap.sdk.LDAPException - To indicate that the initial set of results was not
                         acceptable and that the operation should instead be
                         forwarded to the fallback group of backend sets.
                         If no fallback set of results is available, then an
                         extended result will be generated from the content
                         of this exception.public abstract boolean shouldForward(OperationContext operationContext, ExtendedRequest request, ProxyingRequestProcessor requestProcessor) throws com.unboundid.ldap.sdk.LDAPException
operationContext - The operation context for the extended operation.request - The extended request to be processed.requestProcessor - The proxying request processor for which to
                           make the determination.true if the extended request should be forwarded to one of
          the servers associated with the proxying request processor, or
          false if not.com.unboundid.ldap.sdk.LDAPException - If the request should not be forwarded to a
                         backend server associated with the proxying request
                         processor, but the result contained in the
                         exception should be used instead.public abstract com.unboundid.ldap.sdk.ExtendedResult createFinalResult(OperationContext operationContext, ExtendedRequest request, java.util.List<com.unboundid.ldap.sdk.ExtendedResult> results)
operationContext - The operation context for the extended
                            operation.request - The extended request that was processed.results - The results from all request processors to which
                            the request was forwarded.  It may be empty if
                            the request was not forwarded to any backend
                            servers, in which case this method must
                            construct an appropriate result.  It may have
                            only a single element if the request was only
                            forwarded to one server, and in many cases it
                            may be desirable to simply use that result as
                            the final result.  It may also have multiple
                            elements if the request was forwarded to
                            multiple backend servers, in which case this
                            method must determine whether to return one of
                            them to the client, or to construct a new result
                            to return instead.public java.util.Map<java.util.List<java.lang.String>,java.lang.String> getExamplesArgumentSets()
getExamplesArgumentSets in interface ExampleUsageProvidernull or empty if there should
          not be any example argument sets.