Interface ChangeNumberControlPluginCfg
-
- All Superinterfaces:
Configuration
,PluginCfg
public interface ChangeNumberControlPluginCfg extends PluginCfg
A server-side interface for querying Change Number Control Plugin settings.The Change Number Control Plugin returns the change number generated by the replication subsystem.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addChangeNumberControlChangeListener(ConfigurationChangeListener<ChangeNumberControlPluginCfg> listener)
Register to be notified when this Change Number Control Plugin is changed.Class<? extends ChangeNumberControlPluginCfg>
configurationClass()
Gets the configuration class associated with this Change Number Control Plugin.String
getJavaClass()
Gets the "java-class" property.SortedSet<PluginCfgDefn.PluginType>
getPluginType()
Gets the "plugin-type" property.void
removeChangeNumberControlChangeListener(ConfigurationChangeListener<ChangeNumberControlPluginCfg> listener)
Deregister an existing Change Number Control Plugin configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.PluginCfg
addChangeListener, isEnabled, isInvokeForInternalOperations, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends ChangeNumberControlPluginCfg> configurationClass()
Gets the configuration class associated with this Change Number Control Plugin.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfacePluginCfg
- Returns:
- Returns the configuration class associated with this Change Number Control Plugin.
-
addChangeNumberControlChangeListener
void addChangeNumberControlChangeListener(ConfigurationChangeListener<ChangeNumberControlPluginCfg> listener)
Register to be notified when this Change Number Control Plugin is changed.- Parameters:
listener
- The Change Number Control Plugin configuration change listener.
-
removeChangeNumberControlChangeListener
void removeChangeNumberControlChangeListener(ConfigurationChangeListener<ChangeNumberControlPluginCfg> listener)
Deregister an existing Change Number Control Plugin configuration change listener.- Parameters:
listener
- The Change Number Control Plugin configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the plug-in implementation.
Default value:
org.opends.server.plugins.ChangeNumberControlPlugin
- Specified by:
getJavaClass
in interfacePluginCfg
- Returns:
- Returns the value of the "java-class" property.
-
getPluginType
SortedSet<PluginCfgDefn.PluginType> getPluginType()
Gets the "plugin-type" property.Specifies the set of plug-in types for the plug-in, which specifies the times at which the plug-in is invoked.
Default values:
postOperationAdd
,postOperationDelete
,postOperationModify
,postOperationModifyDN
- Specified by:
getPluginType
in interfacePluginCfg
- Returns:
- Returns an unmodifiable set containing the values of the "plugin-type" property.
-
-