Package org.opends.server.core
Class SubentryManager
- java.lang.Object
-
- org.opends.server.api.plugin.DirectoryServerPlugin<PluginCfg>
-
- org.opends.server.api.plugin.InternalDirectoryServerPlugin
-
- org.opends.server.core.SubentryManager
-
- All Implemented Interfaces:
LocalBackendInitializationListener
public final class SubentryManager extends InternalDirectoryServerPlugin implements LocalBackendInitializationListener
This class provides a mechanism for interacting with subentries defined in the Directory Server. It will handle all necessary processing at server startup to identify and load subentries within the server.
FIXME: At the present time, it assumes that all of the necessary information about subentries defined in the server can be held in memory. If it is determined that this approach is not workable in all cases, then we will need an alternate strategy.
-
-
Constructor Summary
Constructors Constructor Description SubentryManager(ServerContext serverContext)
Creates a new instance of this subentry manager.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
deregisterChangeListener(SubentryChangeListener changeListener)
Deregisters the provided change notification listener with this manager so that it will no longer be notified of any add, delete, modify, or modify DN operations that are performed.void
doPostCommit(PostCommitAddOperation addOperation)
Performs any necessary processing that should be done after the Directory Server has committed an add operation.void
doPostCommit(PostCommitDeleteOperation deleteOperation)
Performs any necessary processing that should be done after the Directory Server has committed a delete operation.void
doPostCommit(PostCommitModifyDNOperation modifyDNOperation)
Performs any necessary processing that should be done after the Directory Server has committed a modify DN operation.void
doPostCommit(PostCommitModifyOperation modifyOperation)
Performs any necessary processing that should be done after the Directory Server has committed a modify operation.PluginResult.PreOperation
doPreOperation(PreOperationAddOperation addOperation)
Performs any necessary processing that should be done just before the Directory Server performs the core processing for an add operation.PluginResult.PreOperation
doPreOperation(PreOperationDeleteOperation deleteOperation)
Performs any necessary processing that should be done just before the Directory Server performs the core processing for a delete operation.PluginResult.PreOperation
doPreOperation(PreOperationModifyDNOperation modifyDNOperation)
Performs any necessary processing that should be done just before the Directory Server performs the core processing for a modify DN operation.PluginResult.PreOperation
doPreOperation(PreOperationModifyOperation modifyOperation)
Performs any necessary processing that should be done just before the Directory Server performs the core processing for a modify operation.void
finalizeSubentryManager()
Performs any required finalization tasks for Subentry Manager.<T> List<T>
getClosestPwPolicySubentries(Entry entry, Function<SubEntry,T> mappingFunction)
Returns the closest password policy subentries applicable to provided entry.List<SubEntry>
getCollectiveSubentries(Dn dn)
Returns collective subentries applicable to specific DN.List<SubEntry>
getCollectiveSubentries(Entry entry)
Returns collective subentries applicable to specific entry.List<SubEntry>
getSubentries()
Returns all subentries for this manager.List<SubEntry>
getSubentries(Dn dn)
Returns subentries applicable to specific DN.void
performBackendPostFinalizationProcessing(String backendId, Predicate<Dn> handlesEntry)
Performs any processing that may be required whenever a backend is finalized.void
performBackendPreInitializationProcessing(LocalBackend<?> backend)
Performs any processing that may be required whenever a backend is initialized for use in the Directory Server.void
registerChangeListener(SubentryChangeListener changeListener)
Registers the provided change notification listener with this manager so that it will be notified of any add, delete, modify, or modify DN operations that are performed.-
Methods inherited from class org.opends.server.api.plugin.InternalDirectoryServerPlugin
initializePlugin, isConfigurationAcceptable
-
Methods inherited from class org.opends.server.api.plugin.DirectoryServerPlugin
doLDIFImport, doLDIFImportBegin, doLDIFImportEnd, doPostConnect, doPostDisconnect, doPostOperation, doPostOperation, doPostOperation, doPostOperation, doPostOperation, doPostOperation, doPostOperation, doPostOperation, doPostOperation, doPostOperation, doPostResponse, doPostResponse, doPostResponse, doPostResponse, doPostResponse, doPostResponse, doPostResponse, doPostResponse, doPostSynchronization, doPostSynchronization, doPostSynchronization, doPostSynchronization, doPreOperation, doPreOperation, doPreOperation, doPreOperation, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doShutdown, doStartup, finalizePlugin, getPluginEntryDN, getPluginTypes, getServerContext, initializeInternal, invokeForInternalOperations, processIntermediateResponse, processSearchEntry, processSearchReference, processSubordinateDelete, processSubordinateModifyDN, setInvokeForInternalOperations
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.opends.server.api.LocalBackendInitializationListener
performBackendPostInitializationProcessing, performBackendPreFinalizationProcessing
-
-
-
-
Constructor Detail
-
SubentryManager
public SubentryManager(ServerContext serverContext)
Creates a new instance of this subentry manager.- Parameters:
serverContext
- the server context
-
-
Method Detail
-
finalizeSubentryManager
public void finalizeSubentryManager()
Performs any required finalization tasks for Subentry Manager. This should only be called at Directory Server shutdown.
-
registerChangeListener
public void registerChangeListener(SubentryChangeListener changeListener)
Registers the provided change notification listener with this manager so that it will be notified of any add, delete, modify, or modify DN operations that are performed.- Parameters:
changeListener
- The change notification listener to register with this manager.
-
deregisterChangeListener
public void deregisterChangeListener(SubentryChangeListener changeListener)
Deregisters the provided change notification listener with this manager so that it will no longer be notified of any add, delete, modify, or modify DN operations that are performed.- Parameters:
changeListener
- The change notification listener to deregister with this manager.
-
performBackendPreInitializationProcessing
public void performBackendPreInitializationProcessing(LocalBackend<?> backend)
Performs any processing that may be required whenever a backend is initialized for use in the Directory Server. This method will be invoked after the backend has been initialized but before it has been put into service.In this case, the server will search the backend to find all subentries that it may contain and register them with this manager.
- Specified by:
performBackendPreInitializationProcessing
in interfaceLocalBackendInitializationListener
- Parameters:
backend
- The backend that has been initialized and is about to be put into service.
-
getSubentries
public List<SubEntry> getSubentries()
Returns all subentries for this manager. Note that this getter will skip any collective subentries, returning only applicable regular subentries.- Returns:
- all subentries for this manager.
-
getSubentries
public List<SubEntry> getSubentries(Dn dn)
Returns subentries applicable to specific DN. Note that this getter will skip any collective subentries, returning only applicable regular subentries.- Parameters:
dn
- for which to retrieve applicable subentries.- Returns:
- applicable subentries.
-
getCollectiveSubentries
public List<SubEntry> getCollectiveSubentries(Dn dn)
Returns collective subentries applicable to specific DN. Note that this getter will skip any regular subentries, returning only applicable collective subentries.- Parameters:
dn
- The DN for which to retrieve applicable subentries.- Returns:
- applicable subentries.
-
getCollectiveSubentries
public List<SubEntry> getCollectiveSubentries(Entry entry)
Returns collective subentries applicable to specific entry. Note that this getter will skip any regular subentries, returning only applicable collective subentries.- Parameters:
entry
- The entry for which to retrieve applicable subentries.- Returns:
- The applicable collective subentries.
-
getClosestPwPolicySubentries
public <T> List<T> getClosestPwPolicySubentries(Entry entry, Function<SubEntry,T> mappingFunction)
Returns the closest password policy subentries applicable to provided entry. Once an applicable policy is found, only it and the ones at the same level (i.e. the "closest") are returned.- Type Parameters:
T
- The type of entry to return.- Parameters:
entry
- The entry for which to retrieve the closest applicable subentries.mappingFunction
- The function that maps a subEntry to T.- Returns:
- The closest applicable password policy subentries, mapped as T.
-
performBackendPostFinalizationProcessing
public void performBackendPostFinalizationProcessing(String backendId, Predicate<Dn> handlesEntry)
Performs any processing that may be required whenever a backend is finalized. This method will be invoked after the backend has been taken out of service and after it has been finalized.In this case, the server will de-register all subentries associated with the provided backend.
- Specified by:
performBackendPostFinalizationProcessing
in interfaceLocalBackendInitializationListener
- Parameters:
backendId
- The backend ID of the backend that has been taken out of service.handlesEntry
- A predicate which can be used for determining whether the finalized backend contained an entry.
-
doPreOperation
public PluginResult.PreOperation doPreOperation(PreOperationAddOperation addOperation)
Description copied from class:DirectoryServerPlugin
Performs any necessary processing that should be done just before the Directory Server performs the core processing for an add operation. This method is not called when processing synchronization operations.- Overrides:
doPreOperation
in classDirectoryServerPlugin<PluginCfg>
- Parameters:
addOperation
- The add operation to be processed.- Returns:
- Information about the result of the plugin processing.
-
doPreOperation
public PluginResult.PreOperation doPreOperation(PreOperationDeleteOperation deleteOperation)
Description copied from class:DirectoryServerPlugin
Performs any necessary processing that should be done just before the Directory Server performs the core processing for a delete operation. This method is not called when processing synchronization operations.- Overrides:
doPreOperation
in classDirectoryServerPlugin<PluginCfg>
- Parameters:
deleteOperation
- The delete operation to be processed.- Returns:
- Information about the result of the plugin processing.
-
doPreOperation
public PluginResult.PreOperation doPreOperation(PreOperationModifyOperation modifyOperation)
Description copied from class:DirectoryServerPlugin
Performs any necessary processing that should be done just before the Directory Server performs the core processing for a modify operation. This method is not called when processing synchronization operations.- Overrides:
doPreOperation
in classDirectoryServerPlugin<PluginCfg>
- Parameters:
modifyOperation
- The modify operation to be processed.- Returns:
- Information about the result of the plugin processing.
-
doPreOperation
public PluginResult.PreOperation doPreOperation(PreOperationModifyDNOperation modifyDNOperation)
Description copied from class:DirectoryServerPlugin
Performs any necessary processing that should be done just before the Directory Server performs the core processing for a modify DN operation. This method is not called when processing synchronization operations.- Overrides:
doPreOperation
in classDirectoryServerPlugin<PluginCfg>
- Parameters:
modifyDNOperation
- The modify DN operation to be processed.- Returns:
- Information about the result of the plugin processing.
-
doPostCommit
public void doPostCommit(PostCommitAddOperation addOperation)
Description copied from class:DirectoryServerPlugin
Performs any necessary processing that should be done after the Directory Server has committed an add operation.- Overrides:
doPostCommit
in classDirectoryServerPlugin<PluginCfg>
- Parameters:
addOperation
- The add operation that has just been committed.
-
doPostCommit
public void doPostCommit(PostCommitDeleteOperation deleteOperation)
Description copied from class:DirectoryServerPlugin
Performs any necessary processing that should be done after the Directory Server has committed a delete operation.- Overrides:
doPostCommit
in classDirectoryServerPlugin<PluginCfg>
- Parameters:
deleteOperation
- The delete operation that has just been committed.
-
doPostCommit
public void doPostCommit(PostCommitModifyOperation modifyOperation)
Description copied from class:DirectoryServerPlugin
Performs any necessary processing that should be done after the Directory Server has committed a modify operation.- Overrides:
doPostCommit
in classDirectoryServerPlugin<PluginCfg>
- Parameters:
modifyOperation
- The modify operation that has just been committed.
-
doPostCommit
public void doPostCommit(PostCommitModifyDNOperation modifyDNOperation)
Description copied from class:DirectoryServerPlugin
Performs any necessary processing that should be done after the Directory Server has committed a modify DN operation.- Overrides:
doPostCommit
in classDirectoryServerPlugin<PluginCfg>
- Parameters:
modifyDNOperation
- The modify DN operation that has just been committed.
-
-