@Extensible @DirectoryServerExtension @BrokerExtension @ThreadSafety(level=INTERFACE_THREADSAFE) public abstract class CipherStreamProvider extends java.lang.Object implements UnboundIDExtension, Reconfigurable<CipherStreamProviderConfig>, ExampleUsageProvider
dsconfig create-cipher-stream-provider \ --provider-name "{provider-name}" \ --type third-party \ --set enabled:true \ --set "extension-class:{class-name}" \ --set "extension-argument:{name=value}"where "{provider-name}" is the name to use for the cipher stream provider instance, "{class-name}" is the fully-qualified name of the Java class that extends
com.unboundid.directory.sdk.ds.api.CipherStreamProvider
,
and "{name=value}" represents name-value pairs for any arguments to
provide to the cipher stream provider. If multiple arguments should be
provided to the cipher stream provider, then the
"--set extension-argument:{name=value}
" option should be
provided multiple times.Constructor and Description |
---|
CipherStreamProvider()
Creates a new instance of this cipher stream provider.
|
Modifier and Type | Method and Description |
---|---|
com.unboundid.ldap.sdk.ResultCode |
applyConfiguration(CipherStreamProviderConfig 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 javax.crypto.CipherInputStream |
createCipherInputStream(java.io.InputStream source)
Wraps the provided input stream in a cipher input stream that can be used
to decrypt data read from the given stream.
|
abstract javax.crypto.CipherOutputStream |
createCipherOutputStream(java.io.OutputStream target)
Wraps the provided output stream in a cipher output stream that can be used
to encrypt data written to the given stream.
|
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 |
finalizeCipherStreamProvider()
Performs any cleanup which may be necessary when this cipher stream
provider is to be taken out of service.
|
java.util.Map<java.lang.String,java.lang.String> |
getBackupCompatibilityProperties()
Retrieves a map with information about any backup compatibility properties
that are specific to this cipher stream provider.
|
java.util.List<java.lang.String> |
getBackupCompatibilityPropertyStrings(java.util.Map<java.lang.String,java.lang.String> propertyMap)
Retrieves a list of human-readable string representations for the
provided cipher-stream-provider-specific backup compatibility properties.
|
java.util.List<java.lang.String> |
getBackupLogMessages()
Retrieves a list of messages that should be logged (and made available in
the output) when backing up an encryption settings database protected with
this cipher stream provider.
|
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 |
identifyBackupCompatibilityProblems(java.util.Map<java.lang.String,java.lang.String> sourceProperties,
java.util.Map<java.lang.String,java.lang.String> targetProperties,
java.util.List<java.lang.CharSequence> errorMessages,
java.util.List<java.lang.CharSequence> warningMessages)
Examines the provided set of backup compatibility properties to determine
whether there might be any warning or error conditions that may interfere
with the ability to restore a backup of the encryption settings database.
|
void |
initializeCipherStreamProvider(DirectoryServerContext serverContext,
CipherStreamProviderConfig config,
com.unboundid.util.args.ArgumentParser parser)
Initializes this cipher stream provider.
|
boolean |
isConfigurationAcceptable(CipherStreamProviderConfig 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.
|
public CipherStreamProvider()
initializeCipherStreamProvider
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 initializeCipherStreamProvider(DirectoryServerContext serverContext, CipherStreamProviderConfig 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 cipher stream
provider.parser
- The argument parser which has been initialized from
the configuration for this cipher stream provider.com.unboundid.ldap.sdk.LDAPException
- If a problem occurs while initializing this cipher
stream provider.public boolean isConfigurationAcceptable(CipherStreamProviderConfig config, com.unboundid.util.args.ArgumentParser parser, java.util.List<java.lang.String> unacceptableReasons)
isConfigurationAcceptable
in interface Reconfigurable<CipherStreamProviderConfig>
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(CipherStreamProviderConfig 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<CipherStreamProviderConfig>
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 finalizeCipherStreamProvider()
public abstract javax.crypto.CipherInputStream createCipherInputStream(java.io.InputStream source) throws com.unboundid.ldap.sdk.LDAPException
source
- The input stream to be wrapped with a cipher input stream.com.unboundid.ldap.sdk.LDAPException
- If a problem occurs while creating the cipher input
stream.public abstract javax.crypto.CipherOutputStream createCipherOutputStream(java.io.OutputStream target) throws com.unboundid.ldap.sdk.LDAPException
target
- The output stream to be wrapped with a cipher output
stream.com.unboundid.ldap.sdk.LDAPException
- If a problem occurs while creating the cipher
output stream.public java.util.Map<java.lang.String,java.lang.String> getBackupCompatibilityProperties()
null
or empty if there are no provider-specific
properties.public void identifyBackupCompatibilityProblems(java.util.Map<java.lang.String,java.lang.String> sourceProperties, java.util.Map<java.lang.String,java.lang.String> targetProperties, java.util.List<java.lang.CharSequence> errorMessages, java.util.List<java.lang.CharSequence> warningMessages)
sourceProperties
- A map of properties (obtained from the
getBackupCompatibilityProperties()
method)
from the backup to be restore. The contents of
this map must not be altered.targetProperties
- A map of properties (obtained from the
getBackupCompatibilityProperties()
method)
from the server in which the backup is to be
restored. The contents of this map must not be
altered.errorMessages
- A list that may be updated with messages about
any compatibility errors that have been
identified. If any compatibility errors are
identified, the restore will be aborted.warningMessages
- A list that may be updated with messages about
any compatibility warnings that have been
identified. If any compatibility warnings are
identified, they will be presented to a user
attempting a restore, but the user may choose to
ignore them if they are certain that the issue
will not cause any problems.public java.util.List<java.lang.String> getBackupCompatibilityPropertyStrings(java.util.Map<java.lang.String,java.lang.String> propertyMap)
null
if this cipher stream provider does not expect to have any
provider-specific properties.propertyMap
- A map of the property names and the associated values
to use in obtaining the human-readable string
representations.null
if this cipher stream provider does not expect to have any
provider-specific properties.public java.util.List<java.lang.String> getBackupLogMessages()
null
or empty if no log messages are
needed.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.