Interface JMXAlertHandlerCfgClient
-
- All Superinterfaces:
AlertHandlerCfgClient,ConfigurationClient
public interface JMXAlertHandlerCfgClient extends AlertHandlerCfgClient
A client-side interface for reading and modifying JMX Alert Handler settings.The JMX Alert Handler is used to generate JMX notifications to alert administrators of significant events that occur within the server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectDefinition<? extends JMXAlertHandlerCfgClient,? extends JMXAlertHandlerCfg>definition()Get the configuration definition associated with this JMX Alert Handler.StringgetJavaClass()Gets the "java-class" property.voidsetJavaClass(String value)Sets the "java-class" property.-
Methods inherited from interface org.forgerock.opendj.server.config.client.AlertHandlerCfgClient
getDisabledAlertType, getEnabledAlertType, isEnabled, setDisabledAlertType, setEnabled, setEnabledAlertType
-
Methods inherited from interface org.forgerock.opendj.config.ConfigurationClient
commit, properties
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends JMXAlertHandlerCfgClient,? extends JMXAlertHandlerCfg> definition()
Get the configuration definition associated with this JMX Alert Handler.- Specified by:
definitionin interfaceAlertHandlerCfgClient- Specified by:
definitionin interfaceConfigurationClient- Returns:
- Returns the configuration definition associated with this JMX Alert Handler.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the JMX Alert Handler implementation.
- Specified by:
getJavaClassin interfaceAlertHandlerCfgClient- Returns:
- Returns the value of the "java-class" property.
-
setJavaClass
void setJavaClass(String value) throws PropertyException
Sets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the JMX Alert Handler implementation.
- Specified by:
setJavaClassin interfaceAlertHandlerCfgClient- Parameters:
value- The value of the "java-class" property.- Throws:
PropertyException- If the new value is invalid.
-
-