Package org.opends.server.core
Class GroupManager
- java.lang.Object
-
- org.opends.server.api.plugin.DirectoryServerPlugin<PluginCfg>
-
- org.opends.server.api.plugin.InternalDirectoryServerPlugin
-
- org.opends.server.core.GroupManager
-
- All Implemented Interfaces:
LocalBackendInitializationListener
public final class GroupManager extends InternalDirectoryServerPlugin implements LocalBackendInitializationListener
This class provides a mechanism for interacting with all groups defined in the Directory Server. It will handle all necessary processing at server startup to identify and load all group implementations, as well as to find all group instances within the server.
FIXME: At the present time, it assumes that all of the necessary information about all of the groups 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 GroupManager(ServerContext serverContext)
Creates a new instance of this group manager.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
deregisterAllGroups()
Removes all group instances that might happen to be registered with the group manager.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.Startup
doStartup()
Performs any processing that should be done when the Directory Server is in the process of starting.<E extends Exception>
voiddoWithSharedLock(Action<E> action)
Executes the provided action after acquiring this group manager's lock.void
finalizeGroupManager()
Performs any cleanup work that may be needed when the server is shutting down.Iterable<Group>
getAllGroups()
Retrieves anIterable
object that may be used to cursor across the group instances defined in the server.Group
getGroup(Dn entryDN)
Retrieves the group defined in the entry with the specified DN.EntryCache<? extends EntryCacheCfg>
getStaticGroupCache()
Returns the cache for static groups.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.-
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, doPreOperation, doPreOperation, doPreOperation, doPreOperation, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doPreParse, doShutdown, 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
-
GroupManager
public GroupManager(ServerContext serverContext)
Creates a new instance of this group manager.- Parameters:
serverContext
- The server context.
-
-
Method Detail
-
getStaticGroupCache
public EntryCache<? extends EntryCacheCfg> getStaticGroupCache()
Returns the cache for static groups.- Returns:
- the cache for static groups.
-
finalizeGroupManager
public void finalizeGroupManager()
Performs any cleanup work that may be needed when the server is shutting down.
-
getAllGroups
public Iterable<Group> getAllGroups()
Retrieves anIterable
object that may be used to cursor across the group instances defined in the server.- Returns:
- An
Iterable
object that may be used to cursor across the group instances defined in the server.
-
getGroup
public Group getGroup(Dn entryDN)
Retrieves the group defined in the entry with the specified DN.- Parameters:
entryDN
- The DN of the entry containing the definition of the group to retrieve.- Returns:
- The group defined in the entry with the specified DN, or
null
if no such group is currently defined.
-
doStartup
public PluginResult.Startup doStartup()
Description copied from class:DirectoryServerPlugin
Performs any processing that should be done when the Directory Server is in the process of starting. This method will be called after virtually all other initialization has been performed but before the connection handlers are started.- Overrides:
doStartup
in classDirectoryServerPlugin<PluginCfg>
- Returns:
- The result of the startup plugin processing.
-
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 group instances that it may contain and register them with this group manager.
- Specified by:
performBackendPreInitializationProcessing
in interfaceLocalBackendInitializationListener
- Parameters:
backend
- The backend that has been initialized and is about to be put into service.
-
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 group instances associated with entries in 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.
-
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.
-
doWithSharedLock
public <E extends Exception> void doWithSharedLock(Action<E> action) throws E extends Exception
Executes the provided action after acquiring this group manager's lock.- Type Parameters:
E
- the exception that may be thrown by the action- Parameters:
action
- the action to execute- Throws:
E
- the exception thrown by the actionE extends Exception
-
deregisterAllGroups
public void deregisterAllGroups()
Removes all group instances that might happen to be registered with the group manager. This method is only intended for testing purposes and should not be called by any other code.
-
-