Interface EntryCacheMonitorProviderCfg
-
- All Superinterfaces:
Configuration,MonitorProviderCfg
public interface EntryCacheMonitorProviderCfg extends MonitorProviderCfg
A server-side interface for querying Entry Cache Monitor Provider settings.The Entry Cache Monitor Provider exposes monitor information about the state of OpenDJ directory server entry caches.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddEntryCacheChangeListener(ConfigurationChangeListener<EntryCacheMonitorProviderCfg> listener)Register to be notified when this Entry Cache Monitor Provider is changed.Class<? extends EntryCacheMonitorProviderCfg>configurationClass()Gets the configuration class associated with this Entry Cache Monitor Provider.StringgetJavaClass()Gets the "java-class" property.voidremoveEntryCacheChangeListener(ConfigurationChangeListener<EntryCacheMonitorProviderCfg> listener)Deregister an existing Entry Cache 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 EntryCacheMonitorProviderCfg> configurationClass()
Gets the configuration class associated with this Entry Cache Monitor Provider.- Specified by:
configurationClassin interfaceConfiguration- Specified by:
configurationClassin interfaceMonitorProviderCfg- Returns:
- Returns the configuration class associated with this Entry Cache Monitor Provider.
-
addEntryCacheChangeListener
void addEntryCacheChangeListener(ConfigurationChangeListener<EntryCacheMonitorProviderCfg> listener)
Register to be notified when this Entry Cache Monitor Provider is changed.- Parameters:
listener- The Entry Cache Monitor Provider configuration change listener.
-
removeEntryCacheChangeListener
void removeEntryCacheChangeListener(ConfigurationChangeListener<EntryCacheMonitorProviderCfg> listener)
Deregister an existing Entry Cache Monitor Provider configuration change listener.- Parameters:
listener- The Entry Cache 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 Entry Cache Monitor Provider implementation.
- Specified by:
getJavaClassin interfaceMonitorProviderCfg- Returns:
- Returns the value of the "java-class" property.
-
-