Interface ClientConnectionMonitorProviderCfg
-
- All Superinterfaces:
Configuration,MonitorProviderCfg
public interface ClientConnectionMonitorProviderCfg extends MonitorProviderCfg
A server-side interface for querying Client Connection Monitor Provider settings.The Client Connection Monitor Provider exposes monitor information about the set of client connections that are established to the OpenDJ directory server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddClientConnectionChangeListener(ConfigurationChangeListener<ClientConnectionMonitorProviderCfg> listener)Register to be notified when this Client Connection Monitor Provider is changed.Class<? extends ClientConnectionMonitorProviderCfg>configurationClass()Gets the configuration class associated with this Client Connection Monitor Provider.StringgetJavaClass()Gets the "java-class" property.voidremoveClientConnectionChangeListener(ConfigurationChangeListener<ClientConnectionMonitorProviderCfg> listener)Deregister an existing Client Connection Monitor Provider configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.MonitorProviderCfg
addChangeListener, isEnabled, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends ClientConnectionMonitorProviderCfg> configurationClass()
Gets the configuration class associated with this Client Connection Monitor Provider.- Specified by:
configurationClassin interfaceConfiguration- Specified by:
configurationClassin interfaceMonitorProviderCfg- Returns:
- Returns the configuration class associated with this Client Connection Monitor Provider.
-
addClientConnectionChangeListener
void addClientConnectionChangeListener(ConfigurationChangeListener<ClientConnectionMonitorProviderCfg> listener)
Register to be notified when this Client Connection Monitor Provider is changed.- Parameters:
listener- The Client Connection Monitor Provider configuration change listener.
-
removeClientConnectionChangeListener
void removeClientConnectionChangeListener(ConfigurationChangeListener<ClientConnectionMonitorProviderCfg> listener)
Deregister an existing Client Connection Monitor Provider configuration change listener.- Parameters:
listener- The Client Connection Monitor Provider configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Client Connection Monitor Provider implementation.
- Specified by:
getJavaClassin interfaceMonitorProviderCfg- Returns:
- Returns the value of the "java-class" property.
-
-