Interface GroupImplementationCfg
-
- All Superinterfaces:
Configuration
- All Known Subinterfaces:
DynamicGroupImplementationCfg
,StaticGroupImplementationCfg
,VirtualStaticGroupImplementationCfg
public interface GroupImplementationCfg extends Configuration
A server-side interface for querying Group Implementation settings.Group Implementations define named collections of users.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addChangeListener(ConfigurationChangeListener<GroupImplementationCfg> listener)
Register to be notified when this Group Implementation is changed.Class<? extends GroupImplementationCfg>
configurationClass()
Gets the configuration class associated with this Group Implementation.String
getJavaClass()
Gets the "java-class" property.boolean
isEnabled()
Gets the "enabled" property.void
removeChangeListener(ConfigurationChangeListener<GroupImplementationCfg> listener)
Deregister an existing Group Implementation configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
-
-
-
Method Detail
-
configurationClass
Class<? extends GroupImplementationCfg> configurationClass()
Gets the configuration class associated with this Group Implementation.- Specified by:
configurationClass
in interfaceConfiguration
- Returns:
- Returns the configuration class associated with this Group Implementation.
-
addChangeListener
void addChangeListener(ConfigurationChangeListener<GroupImplementationCfg> listener)
Register to be notified when this Group Implementation is changed.- Parameters:
listener
- The Group Implementation configuration change listener.
-
removeChangeListener
void removeChangeListener(ConfigurationChangeListener<GroupImplementationCfg> listener)
Deregister an existing Group Implementation configuration change listener.- Parameters:
listener
- The Group Implementation configuration change listener.
-
isEnabled
boolean isEnabled()
Gets the "enabled" property.Indicates whether the Group Implementation is enabled.
- Returns:
- Returns the value of the "enabled" property.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Group Implementation implementation.
- Returns:
- Returns the value of the "java-class" property.
-
-