Uses of Class
org.opends.server.types.AccountStatusNotificationProperty
-
Packages that use AccountStatusNotificationProperty Package Description org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.types Contains implementations for a number of Directory Server data types. -
-
Uses of AccountStatusNotificationProperty in org.opends.server.core
Method parameters in org.opends.server.core with type arguments of type AccountStatusNotificationProperty Modifier and Type Method Description void
PasswordPolicyState. generateAccountStatusNotification(AccountStatusNotificationType notificationType, Entry userEntry, LocalizableMessage message, Map<AccountStatusNotificationProperty,List<String>> notificationProperties)
Generates an account status notification for this user. -
Uses of AccountStatusNotificationProperty in org.opends.server.types
Methods in org.opends.server.types that return AccountStatusNotificationProperty Modifier and Type Method Description static AccountStatusNotificationProperty
AccountStatusNotificationProperty. forName(String name)
Retrieves the account status notification type with the specified name.static AccountStatusNotificationProperty
AccountStatusNotificationProperty. valueOf(String name)
Returns the enum constant of this type with the specified name.static AccountStatusNotificationProperty[]
AccountStatusNotificationProperty. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.opends.server.types that return types with arguments of type AccountStatusNotificationProperty Modifier and Type Method Description static Map<AccountStatusNotificationProperty,List<String>>
AccountStatusNotification. createProperties(PasswordPolicyState pwPolicyState, boolean tempLocked, int timeToExpiration, List<ByteString> oldPasswords, List<ByteString> newPasswords)
Creates a set of account status notification properties from the provided information.Map<AccountStatusNotificationProperty,List<String>>
AccountStatusNotification. getNotificationProperties()
Retrieves a set of properties that may provide additional information for this account status notification.Methods in org.opends.server.types with parameters of type AccountStatusNotificationProperty Modifier and Type Method Description List<String>
AccountStatusNotification. getNotificationProperty(AccountStatusNotificationProperty property)
Retrieves the set of values for the specified account status notification property.Constructor parameters in org.opends.server.types with type arguments of type AccountStatusNotificationProperty Constructor Description AccountStatusNotification(AccountStatusNotificationType notificationType, Entry userEntry, LocalizableMessage message, Map<AccountStatusNotificationProperty,List<String>> notificationProperties)
Creates a new account status notification object with the provided information.
-