Interface StaticGroupImplementationCfg
-
- All Superinterfaces:
Configuration
,GroupImplementationCfg
public interface StaticGroupImplementationCfg extends GroupImplementationCfg
A server-side interface for querying Static Group Implementation settings.The Static Group Implementation provides a grouping mechanism in which the group membership is based on an explicit list of the DNs of the users that are members of the group.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addStaticChangeListener(ConfigurationChangeListener<StaticGroupImplementationCfg> listener)
Register to be notified when this Static Group Implementation is changed.Class<? extends StaticGroupImplementationCfg>
configurationClass()
Gets the configuration class associated with this Static Group Implementation.String
getJavaClass()
Gets the "java-class" property.void
removeStaticChangeListener(ConfigurationChangeListener<StaticGroupImplementationCfg> listener)
Deregister an existing Static 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 StaticGroupImplementationCfg> configurationClass()
Gets the configuration class associated with this Static Group Implementation.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfaceGroupImplementationCfg
- Returns:
- Returns the configuration class associated with this Static Group Implementation.
-
addStaticChangeListener
void addStaticChangeListener(ConfigurationChangeListener<StaticGroupImplementationCfg> listener)
Register to be notified when this Static Group Implementation is changed.- Parameters:
listener
- The Static Group Implementation configuration change listener.
-
removeStaticChangeListener
void removeStaticChangeListener(ConfigurationChangeListener<StaticGroupImplementationCfg> listener)
Deregister an existing Static Group Implementation configuration change listener.- Parameters:
listener
- The Static 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 Static Group Implementation implementation.
Default value:
org.opends.server.extensions.StaticGroup
- Specified by:
getJavaClass
in interfaceGroupImplementationCfg
- Returns:
- Returns the value of the "java-class" property.
-
-