Interface DynamicGroupImplementationCfg
-
- All Superinterfaces:
Configuration
,GroupImplementationCfg
public interface DynamicGroupImplementationCfg extends GroupImplementationCfg
A server-side interface for querying Dynamic Group Implementation settings.The Dynamic Group Implementation provides a grouping mechanism in which the group membership is determined based on criteria defined in one or more LDAP URLs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addDynamicChangeListener(ConfigurationChangeListener<DynamicGroupImplementationCfg> listener)
Register to be notified when this Dynamic Group Implementation is changed.Class<? extends DynamicGroupImplementationCfg>
configurationClass()
Gets the configuration class associated with this Dynamic Group Implementation.String
getJavaClass()
Gets the "java-class" property.void
removeDynamicChangeListener(ConfigurationChangeListener<DynamicGroupImplementationCfg> listener)
Deregister an existing Dynamic Group Implementation configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.GroupImplementationCfg
addChangeListener, isEnabled, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends DynamicGroupImplementationCfg> configurationClass()
Gets the configuration class associated with this Dynamic Group Implementation.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfaceGroupImplementationCfg
- Returns:
- Returns the configuration class associated with this Dynamic Group Implementation.
-
addDynamicChangeListener
void addDynamicChangeListener(ConfigurationChangeListener<DynamicGroupImplementationCfg> listener)
Register to be notified when this Dynamic Group Implementation is changed.- Parameters:
listener
- The Dynamic Group Implementation configuration change listener.
-
removeDynamicChangeListener
void removeDynamicChangeListener(ConfigurationChangeListener<DynamicGroupImplementationCfg> listener)
Deregister an existing Dynamic Group Implementation configuration change listener.- Parameters:
listener
- The Dynamic Group Implementation configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Dynamic Group Implementation implementation.
Default value:
org.opends.server.extensions.DynamicGroup
- Specified by:
getJavaClass
in interfaceGroupImplementationCfg
- Returns:
- Returns the value of the "java-class" property.
-
-