Interface ErrorLogAccountStatusNotificationHandlerCfg
-
- All Superinterfaces:
AccountStatusNotificationHandlerCfg
,Configuration
public interface ErrorLogAccountStatusNotificationHandlerCfg extends AccountStatusNotificationHandlerCfg
A server-side interface for querying Error Log Account Status Notification Handler settings.The Error Log Account Status Notification Handler is a notification handler that writes information to the server error log whenever an appropriate account status event occurs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addErrorLogChangeListener(ConfigurationChangeListener<ErrorLogAccountStatusNotificationHandlerCfg> listener)
Register to be notified when this Error Log Account Status Notification Handler is changed.Class<? extends ErrorLogAccountStatusNotificationHandlerCfg>
configurationClass()
Gets the configuration class associated with this Error Log Account Status Notification Handler.SortedSet<ErrorLogAccountStatusNotificationHandlerCfgDefn.AccountStatusNotificationType>
getAccountStatusNotificationType()
Gets the "account-status-notification-type" property.String
getJavaClass()
Gets the "java-class" property.void
removeErrorLogChangeListener(ConfigurationChangeListener<ErrorLogAccountStatusNotificationHandlerCfg> listener)
Deregister an existing Error Log Account Status Notification Handler configuration change listener.-
Methods inherited from interface org.forgerock.opendj.server.config.server.AccountStatusNotificationHandlerCfg
addChangeListener, isEnabled, removeChangeListener
-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
-
-
-
Method Detail
-
configurationClass
Class<? extends ErrorLogAccountStatusNotificationHandlerCfg> configurationClass()
Gets the configuration class associated with this Error Log Account Status Notification Handler.- Specified by:
configurationClass
in interfaceAccountStatusNotificationHandlerCfg
- Specified by:
configurationClass
in interfaceConfiguration
- Returns:
- Returns the configuration class associated with this Error Log Account Status Notification Handler.
-
addErrorLogChangeListener
void addErrorLogChangeListener(ConfigurationChangeListener<ErrorLogAccountStatusNotificationHandlerCfg> listener)
Register to be notified when this Error Log Account Status Notification Handler is changed.- Parameters:
listener
- The Error Log Account Status Notification Handler configuration change listener.
-
removeErrorLogChangeListener
void removeErrorLogChangeListener(ConfigurationChangeListener<ErrorLogAccountStatusNotificationHandlerCfg> listener)
Deregister an existing Error Log Account Status Notification Handler configuration change listener.- Parameters:
listener
- The Error Log Account Status Notification Handler configuration change listener.
-
getAccountStatusNotificationType
SortedSet<ErrorLogAccountStatusNotificationHandlerCfgDefn.AccountStatusNotificationType> getAccountStatusNotificationType()
Gets the "account-status-notification-type" property.Indicates which types of event can trigger an account status notification.
- Returns:
- Returns an unmodifiable set containing the values of the "account-status-notification-type" property.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Error Log Account Status Notification Handler implementation.
Default value:
org.opends.server.extensions.ErrorLogAccountStatusNotificationHandler
- Specified by:
getJavaClass
in interfaceAccountStatusNotificationHandlerCfg
- Returns:
- Returns the value of the "java-class" property.
-
-