Enum NotificationEventType
- java.lang.Object
-
- java.lang.Enum<NotificationEventType>
-
- com.pingidentity.sdk.notification.NotificationEventType
-
- All Implemented Interfaces:
Serializable,Comparable<NotificationEventType>
public enum NotificationEventType extends Enum<NotificationEventType>
List of possible event types to be sent from PingFederate- Since:
- 9.3
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Optional<NotificationEventType>fromString(String name)StringgetName()StringtoString()static NotificationEventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static NotificationEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PASSWORD_RESET
public static final NotificationEventType PASSWORD_RESET
-
PASSWORD_CHANGED
public static final NotificationEventType PASSWORD_CHANGED
-
USERNAME_RECOVERY
public static final NotificationEventType USERNAME_RECOVERY
-
OWNERSHIP_VERIFICATION_ONE_TIME_LINK
public static final NotificationEventType OWNERSHIP_VERIFICATION_ONE_TIME_LINK
-
OWNERSHIP_VERIFICATION_ONE_TIME_PASSCODE
public static final NotificationEventType OWNERSHIP_VERIFICATION_ONE_TIME_PASSCODE
-
PASSWORD_RESET_ONE_TIME_LINK
public static final NotificationEventType PASSWORD_RESET_ONE_TIME_LINK
-
PASSWORD_RESET_ONE_TIME_CODE
public static final NotificationEventType PASSWORD_RESET_ONE_TIME_CODE
-
ACCOUNT_UNLOCKED
public static final NotificationEventType ACCOUNT_UNLOCKED
-
ACCOUNT_DISABLED
public static final NotificationEventType ACCOUNT_DISABLED
-
PASSWORD_RESET_FAILED
public static final NotificationEventType PASSWORD_RESET_FAILED
-
ADMIN_PASSWORD_CHANGED
public static final NotificationEventType ADMIN_PASSWORD_CHANGED
-
ADMIN_EMAIL_CHANGED
public static final NotificationEventType ADMIN_EMAIL_CHANGED
-
ADMIN_ACCOUNT_CHANGE_NOTIFICATION_OFF
public static final NotificationEventType ADMIN_ACCOUNT_CHANGE_NOTIFICATION_OFF
-
CERTIFICATE_EVENT_EXPIRED
public static final NotificationEventType CERTIFICATE_EVENT_EXPIRED
-
CERTIFICATE_EVENT_INITIAL_WARN
public static final NotificationEventType CERTIFICATE_EVENT_INITIAL_WARN
-
CERTIFICATE_EVENT_FINAL_WARN
public static final NotificationEventType CERTIFICATE_EVENT_FINAL_WARN
-
CERTIFICATE_EVENT_ACTIVATED
public static final NotificationEventType CERTIFICATE_EVENT_ACTIVATED
-
CERTIFICATE_EVENT_CREATED
public static final NotificationEventType CERTIFICATE_EVENT_CREATED
-
SERVER_LICENSING_EVENT_WARNING
public static final NotificationEventType SERVER_LICENSING_EVENT_WARNING
-
SERVER_LICENSING_EVENT_GROUP_WARNING
public static final NotificationEventType SERVER_LICENSING_EVENT_GROUP_WARNING
-
SERVER_LICENSING_EVENT_EXPIRED
public static final NotificationEventType SERVER_LICENSING_EVENT_EXPIRED
-
SERVER_LICENSING_EVENT_GROUP_EXPIRED
public static final NotificationEventType SERVER_LICENSING_EVENT_GROUP_EXPIRED
-
SERVER_LICENSING_EVENT_SHUTDOWN
public static final NotificationEventType SERVER_LICENSING_EVENT_SHUTDOWN
-
SERVER_LICENSING_EVENT_GROUP_SHUTDOWN
public static final NotificationEventType SERVER_LICENSING_EVENT_GROUP_SHUTDOWN
-
SAML_METADATA_UPDATE_EVENT_FAILED
public static final NotificationEventType SAML_METADATA_UPDATE_EVENT_FAILED
-
SAML_METADATA_UPDATE_EVENT_ENTITY_ID_NOT_FOUND
public static final NotificationEventType SAML_METADATA_UPDATE_EVENT_ENTITY_ID_NOT_FOUND
-
SAML_METADATA_UPDATE_EVENT_UPDATED
public static final NotificationEventType SAML_METADATA_UPDATE_EVENT_UPDATED
-
THREAD_POOL_EXHAUSTION
public static final NotificationEventType THREAD_POOL_EXHAUSTION
-
BULKHEAD_WARNING
public static final NotificationEventType BULKHEAD_WARNING
-
BULKHEAD_FULL
public static final NotificationEventType BULKHEAD_FULL
-
AUDIT_LOGGING_FAILURE
public static final NotificationEventType AUDIT_LOGGING_FAILURE
-
AUDIT_LOGGING_RECOVERY
public static final NotificationEventType AUDIT_LOGGING_RECOVERY
-
-
Method Detail
-
values
public static NotificationEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (NotificationEventType c : NotificationEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationEventType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getName
public String getName()
-
fromString
public static Optional<NotificationEventType> fromString(String name)
-
toString
public String toString()
- Overrides:
toStringin classEnum<NotificationEventType>
-
-