Interface ErrorLogAccountStatusNotificationHandlerCfgClient
-
- All Superinterfaces:
AccountStatusNotificationHandlerCfgClient,ConfigurationClient
public interface ErrorLogAccountStatusNotificationHandlerCfgClient extends AccountStatusNotificationHandlerCfgClient
A client-side interface for reading and modifying 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 ManagedObjectDefinition<? extends ErrorLogAccountStatusNotificationHandlerCfgClient,? extends ErrorLogAccountStatusNotificationHandlerCfg>definition()Get the configuration definition associated with this Error Log Account Status Notification Handler.SortedSet<ErrorLogAccountStatusNotificationHandlerCfgDefn.AccountStatusNotificationType>getAccountStatusNotificationType()Gets the "account-status-notification-type" property.StringgetJavaClass()Gets the "java-class" property.voidsetAccountStatusNotificationType(Collection<ErrorLogAccountStatusNotificationHandlerCfgDefn.AccountStatusNotificationType> values)Sets the "account-status-notification-type" property.voidsetJavaClass(String value)Sets the "java-class" property.-
Methods inherited from interface org.forgerock.opendj.server.config.client.AccountStatusNotificationHandlerCfgClient
isEnabled, setEnabled
-
Methods inherited from interface org.forgerock.opendj.config.ConfigurationClient
commit, properties
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends ErrorLogAccountStatusNotificationHandlerCfgClient,? extends ErrorLogAccountStatusNotificationHandlerCfg> definition()
Get the configuration definition associated with this Error Log Account Status Notification Handler.- Specified by:
definitionin interfaceAccountStatusNotificationHandlerCfgClient- Specified by:
definitionin interfaceConfigurationClient- Returns:
- Returns the configuration definition associated with this Error Log Account Status Notification Handler.
-
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 the values of the "account-status-notification-type" property.
-
setAccountStatusNotificationType
void setAccountStatusNotificationType(Collection<ErrorLogAccountStatusNotificationHandlerCfgDefn.AccountStatusNotificationType> values) throws PropertyException
Sets the "account-status-notification-type" property.Indicates which types of event can trigger an account status notification.
- Parameters:
values- The values of the "account-status-notification-type" property.- Throws:
PropertyException- If one or more of the new values are invalid.
-
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.
- Specified by:
getJavaClassin interfaceAccountStatusNotificationHandlerCfgClient- 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 Error Log Account Status Notification Handler implementation.
- Specified by:
setJavaClassin interfaceAccountStatusNotificationHandlerCfgClient- Parameters:
value- The value of the "java-class" property.- Throws:
PropertyException- If the new value is invalid.
-
-