public static enum SessionKeys.Events extends java.lang.Enum<SessionKeys.Events>
Enum Constant and Description |
---|
EXPIRED_SECRET_KEY
If an endpoint receives a message encrypted with a secret key that
has expired.
|
NO_SECRET_KEY
If an endpoint does not have any secret key to decrypt a secret key
encrypted message it received.
|
USE_THIS_SKCERT
If an endpoint wants the other endpoint to use an alternate secret
key, say because it already has reached the maximum number of secret
keys it can hold for the corresponding public key or the secret key
used in the received message has expired but it has other secret keys
stored for the public key, it can ask the remote endpoint to use one
of the existing secret keys by providing the corresponding
certificate.
|
Modifier and Type | Method and Description |
---|---|
static SessionKeys.Events |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SessionKeys.Events[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionKeys.Events NO_SECRET_KEY
public static final SessionKeys.Events EXPIRED_SECRET_KEY
public static final SessionKeys.Events USE_THIS_SKCERT
public static SessionKeys.Events[] values()
for (SessionKeys.Events c : SessionKeys.Events.values()) System.out.println(c);
public static SessionKeys.Events valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null