@Extensible @DirectoryProxyServerExtension(appliesToLocalContent=false, appliesToRemoteContent=true) @ThreadSafety(level=INTERFACE_THREADSAFE) public abstract class ProxyTransformation extends java.lang.Object implements UnboundIDExtension, Reconfigurable<ProxyTransformationConfig>, ExampleUsageProvider
dsconfig create-proxy-transformation \ --transformation-name "{transformation-name}" \ --type third-party \ --set enabled:true \ --set "extension-class:{class-name}" \ --set "extension-argument:{name=value}"where "{transformation-name}" is the name to use for the proxy transformation instance, "{class-name}" is the fully-qualified name of the Java class that extends
com.unboundid.directory.sdk.proxy.api.ProxyTransformation
, and
"{name=value}" represents name-value pairs for any arguments to
provide to the proxy transformation. If multiple arguments should be
provided to the proxy transformation, then the
"--set extension-argument:{name=value}
" option should be
provided multiple times.ScriptedProxyTransformation
Constructor and Description |
---|
ProxyTransformation()
Creates a new instance of this proxy transformation.
|
Modifier and Type | Method and Description |
---|---|
com.unboundid.ldap.sdk.ResultCode |
applyConfiguration(ProxyTransformationConfig 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.
|
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 |
finalizeProxyTransformation()
Performs any cleanup which may be necessary when this proxy transformation
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[] |
getExtensionDescription()
Retrieves a human-readable description for this extension.
|
abstract java.lang.String |
getExtensionName()
Retrieves a human-readable name for this extension.
|
void |
initializeProxyTransformation(ProxyServerContext serverContext,
ProxyTransformationConfig config,
com.unboundid.util.args.ArgumentParser parser)
Initializes this proxy transformation.
|
boolean |
isConfigurationAcceptable(ProxyTransformationConfig 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.
|
java.lang.String |
toString()
Retrieves a string representation of this proxy transformation.
|
abstract void |
toString(java.lang.StringBuilder buffer)
Appends a string representation of this proxy transformation to the
provided buffer.
|
com.unboundid.ldap.sdk.AddRequest |
transformAddRequest(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.AddRequest addRequest)
Applies any necessary transformation to the provided add request.
|
com.unboundid.ldap.sdk.LDAPResult |
transformAddResult(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.ReadOnlyAddRequest addRequest,
com.unboundid.ldap.sdk.LDAPResult addResult)
Applies any necessary transformation to the provided add result.
|
com.unboundid.ldap.sdk.BindRequest |
transformBindRequest(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.BindRequest bindRequest)
Applies any necessary transformation to the provided bind request.
|
com.unboundid.ldap.sdk.BindResult |
transformBindResult(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.BindRequest bindRequest,
com.unboundid.ldap.sdk.BindResult bindResult)
Applies any necessary transformation to the provided bind request.
|
com.unboundid.ldap.sdk.CompareRequest |
transformCompareRequest(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.CompareRequest compareRequest)
Applies any necessary transformation to the provided compare request.
|
com.unboundid.ldap.sdk.LDAPResult |
transformCompareResult(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.ReadOnlyCompareRequest compareRequest,
com.unboundid.ldap.sdk.LDAPResult compareResult)
Applies any necessary transformation to the provided compare result.
|
com.unboundid.ldap.sdk.DeleteRequest |
transformDeleteRequest(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.DeleteRequest deleteRequest)
Applies any necessary transformation to the provided delete request.
|
com.unboundid.ldap.sdk.LDAPResult |
transformDeleteResult(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.ReadOnlyDeleteRequest deleteRequest,
com.unboundid.ldap.sdk.LDAPResult deleteResult)
Applies any necessary transformation to the provided delete result.
|
com.unboundid.ldap.sdk.ModifyDNRequest |
transformModifyDNRequest(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.ModifyDNRequest modifyDNRequest)
Applies any necessary transformation to the provided modify DN request.
|
com.unboundid.ldap.sdk.LDAPResult |
transformModifyDNResult(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.ReadOnlyModifyDNRequest modifyDNRequest,
com.unboundid.ldap.sdk.LDAPResult modifyDNResult)
Applies any necessary transformation to the provided modify DN result.
|
com.unboundid.ldap.sdk.ModifyRequest |
transformModifyRequest(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.ModifyRequest modifyRequest)
Applies any necessary transformation to the provided modify request.
|
com.unboundid.ldap.sdk.LDAPResult |
transformModifyResult(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.ReadOnlyModifyRequest modifyRequest,
com.unboundid.ldap.sdk.LDAPResult modifyResult)
Applies any necessary transformation to the provided modify result.
|
com.unboundid.ldap.sdk.SearchRequest |
transformSearchRequest(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.SearchRequest searchRequest)
Applies any necessary transformation to the provided search request.
|
com.unboundid.ldap.sdk.SearchResult |
transformSearchResult(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest,
com.unboundid.ldap.sdk.SearchResult searchResult,
SearchResultProvider resultProvider)
Applies any necessary transformation to the provided search result.
|
com.unboundid.ldap.sdk.SearchResultEntry |
transformSearchResultEntry(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest,
com.unboundid.ldap.sdk.SearchResultEntry searchEntry)
Applies any necessary transformation to the provided search result entry.
|
com.unboundid.ldap.sdk.SearchResultReference |
transformSearchResultReference(ProxyOperationContext operationContext,
com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest,
com.unboundid.ldap.sdk.SearchResultReference searchReference)
Applies any necessary transformation to the provided search result
reference.
|
public ProxyTransformation()
initializeProxyTransformation
method.public abstract java.lang.String getExtensionName()
getExtensionName
in interface UnboundIDExtension
public abstract java.lang.String[] getExtensionDescription()
getExtensionDescription
in interface UnboundIDExtension
null
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 Configurable
parser
- 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 initializeProxyTransformation(ProxyServerContext serverContext, ProxyTransformationConfig config, com.unboundid.util.args.ArgumentParser parser) throws com.unboundid.ldap.sdk.LDAPException
serverContext
- A handle to the server context for the Directory
Proxy server in which this extension is running.config
- The general configuration for this proxy
transformation.parser
- The argument parser which has been initialized from
the configuration for this proxy transformation.com.unboundid.ldap.sdk.LDAPException
- If a problem occurs while initializing this proxy
transformation.public boolean isConfigurationAcceptable(ProxyTransformationConfig config, com.unboundid.util.args.ArgumentParser parser, java.util.List<java.lang.String> unacceptableReasons)
isConfigurationAcceptable
in interface Reconfigurable<ProxyTransformationConfig>
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(ProxyTransformationConfig 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<ProxyTransformationConfig>
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 finalizeProxyTransformation()
public com.unboundid.ldap.sdk.AddRequest transformAddRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.AddRequest addRequest) throws com.unboundid.ldap.sdk.LDAPException
operationContext
- Information about the operation being processed
in the Directory Proxy Server.addRequest
- The add request to be transformed.com.unboundid.ldap.sdk.LDAPException
- If a problem is encountered while processing the
transformation, or if the provided request should
not be forwarded to a backend server.public com.unboundid.ldap.sdk.LDAPResult transformAddResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlyAddRequest addRequest, com.unboundid.ldap.sdk.LDAPResult addResult)
operationContext
- Information about the operation being processed
in the Directory Proxy Server.addRequest
- The add request that was processed.addResult
- The add result to be transformed.public com.unboundid.ldap.sdk.BindRequest transformBindRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.BindRequest bindRequest) throws com.unboundid.ldap.sdk.LDAPException
operationContext
- Information about the operation being processed
in the Directory Proxy Server.bindRequest
- The bind request to be transformed.com.unboundid.ldap.sdk.LDAPException
- If a problem is encountered while processing the
transformation, or if the provided request should
not be forwarded to a backend server.public com.unboundid.ldap.sdk.BindResult transformBindResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.BindRequest bindRequest, com.unboundid.ldap.sdk.BindResult bindResult)
operationContext
- Information about the operation being processed
in the Directory Proxy Server.bindRequest
- The bind request that was processed.bindResult
- The bind result to be transformed.public com.unboundid.ldap.sdk.CompareRequest transformCompareRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.CompareRequest compareRequest) throws com.unboundid.ldap.sdk.LDAPException
operationContext
- Information about the operation being processed
in the Directory Proxy Server.compareRequest
- The compare request to be transformed.com.unboundid.ldap.sdk.LDAPException
- If a problem is encountered while processing the
transformation, or if the provided request should
not be forwarded to a backend server.public com.unboundid.ldap.sdk.LDAPResult transformCompareResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlyCompareRequest compareRequest, com.unboundid.ldap.sdk.LDAPResult compareResult)
operationContext
- Information about the operation being processed
in the Directory Proxy Server.compareRequest
- The compare request that was processed.compareResult
- The compare result to be transformed.public com.unboundid.ldap.sdk.DeleteRequest transformDeleteRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.DeleteRequest deleteRequest) throws com.unboundid.ldap.sdk.LDAPException
operationContext
- Information about the operation being processed
in the Directory Proxy Server.deleteRequest
- The delete request to be transformed.com.unboundid.ldap.sdk.LDAPException
- If a problem is encountered while processing the
transformation, or if the provided request should
not be forwarded to a backend server.public com.unboundid.ldap.sdk.LDAPResult transformDeleteResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlyDeleteRequest deleteRequest, com.unboundid.ldap.sdk.LDAPResult deleteResult)
operationContext
- Information about the operation being processed
in the Directory Proxy Server.deleteRequest
- The delete request that was processed.deleteResult
- The delete result to be transformed.public com.unboundid.ldap.sdk.ModifyRequest transformModifyRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ModifyRequest modifyRequest) throws com.unboundid.ldap.sdk.LDAPException
operationContext
- Information about the operation being processed
in the Directory Proxy Server.modifyRequest
- The modify request to be transformed.com.unboundid.ldap.sdk.LDAPException
- If a problem is encountered while processing the
transformation, or if the provided request should
not be forwarded to a backend server.public com.unboundid.ldap.sdk.LDAPResult transformModifyResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlyModifyRequest modifyRequest, com.unboundid.ldap.sdk.LDAPResult modifyResult)
operationContext
- Information about the operation being processed
in the Directory Proxy Server.modifyRequest
- The modify request that was processed.modifyResult
- The modify result to be transformed.public com.unboundid.ldap.sdk.ModifyDNRequest transformModifyDNRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ModifyDNRequest modifyDNRequest) throws com.unboundid.ldap.sdk.LDAPException
operationContext
- Information about the operation being processed
in the Directory Proxy Server.modifyDNRequest
- The modify DN request to be transformed.com.unboundid.ldap.sdk.LDAPException
- If a problem is encountered while processing the
transformation, or if the provided request should
not be forwarded to a backend server.public com.unboundid.ldap.sdk.LDAPResult transformModifyDNResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlyModifyDNRequest modifyDNRequest, com.unboundid.ldap.sdk.LDAPResult modifyDNResult)
operationContext
- Information about the operation being processed
in the Directory Proxy Server.modifyDNRequest
- The modify DN request that was processed.modifyDNResult
- The modify DN result to be transformed.public com.unboundid.ldap.sdk.SearchRequest transformSearchRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.SearchRequest searchRequest) throws com.unboundid.ldap.sdk.LDAPException
operationContext
- Information about the operation being processed
in the Directory Proxy Server.searchRequest
- The search request to be transformed.com.unboundid.ldap.sdk.LDAPException
- If a problem is encountered while processing the
transformation, or if the provided request should
not be forwarded to a backend server.public com.unboundid.ldap.sdk.SearchResult transformSearchResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest, com.unboundid.ldap.sdk.SearchResult searchResult, SearchResultProvider resultProvider)
operationContext
- Information about the operation being processed
in the Directory Proxy Server.searchRequest
- The search request that was processed.searchResult
- The search result to be transformed.resultProvider
- The search result provider which may be used to
send additional search result entries and/or
references to the client.public com.unboundid.ldap.sdk.SearchResultEntry transformSearchResultEntry(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest, com.unboundid.ldap.sdk.SearchResultEntry searchEntry)
operationContext
- Information about the operation being processed
in the Directory Proxy Server.searchRequest
- The search request that is being processed.searchEntry
- The search result entry to be transformed.null
if the entry should not be returned to the client.public com.unboundid.ldap.sdk.SearchResultReference transformSearchResultReference(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest, com.unboundid.ldap.sdk.SearchResultReference searchReference)
operationContext
- Information about the operation being processed
in the Directory Proxy Server.searchRequest
- The search request that is being processed.searchReference
- The search result reference to be transformed.null
if the reference
should not be returned to the client.public final java.lang.String toString()
toString
in class java.lang.Object
public abstract void toString(java.lang.StringBuilder buffer)
buffer
- The buffer to which the string representation should be
appended.public java.util.Map<java.util.List<java.lang.String>,java.lang.String> getExamplesArgumentSets()
getExamplesArgumentSets
in interface ExampleUsageProvider
null
or empty if there should
not be any example argument sets.