public static enum AuthKeyAuthenticationHandler.AuthKeyState extends java.lang.Enum<AuthKeyAuthenticationHandler.AuthKeyState>
Enum Constant and Description |
---|
FAILED_INVALID_AUTHKEY
An authkey was received but is invalid.
|
FAILED_INVALID_AUTHKEY_EXPIRED
An auth key was received but it was expired.
|
FAILED_INVALID_AUTHKEY_INVALID_DIGEST
An auth key was received but its digest was invalid.
|
FAILED_INVALID_AUTHKEY_INVALID_HTTP_METHOD
An auth key was received but it does not authorize the HTTP method that was used.
|
FAILED_INVALID_AUTHKEY_INVALID_IP
An auth key was received but it cannot be used from the IP it was sent from.
|
FAILED_INVALID_AUTHKEY_INVALID_MEMBER
An auth key was received but its Member was invalid.
|
LOGGED_WITH_AUTHKEY
An authkey was received and was used to set the loggedMember.
|
SKIPPED_ALREADY_LOGGED
Member is already logged in current context, AuthKey was skipped for current request.
|
SKIPPED_DISABLED
AuthKey is disabled and was skipped for current request.
|
SKIPPED_NO_AUTHKEY
No authKey was received, AuthKey was skipped for current request.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isSet(AuthenticationContext ctxt)
Check if this state was set for the specified AuthenticationContext
|
static AuthKeyAuthenticationHandler.AuthKeyState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthKeyAuthenticationHandler.AuthKeyState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthKeyAuthenticationHandler.AuthKeyState SKIPPED_DISABLED
public static final AuthKeyAuthenticationHandler.AuthKeyState SKIPPED_NO_AUTHKEY
public static final AuthKeyAuthenticationHandler.AuthKeyState SKIPPED_ALREADY_LOGGED
public static final AuthKeyAuthenticationHandler.AuthKeyState FAILED_INVALID_AUTHKEY
public static final AuthKeyAuthenticationHandler.AuthKeyState LOGGED_WITH_AUTHKEY
public static final AuthKeyAuthenticationHandler.AuthKeyState FAILED_INVALID_AUTHKEY_INVALID_MEMBER
public static final AuthKeyAuthenticationHandler.AuthKeyState FAILED_INVALID_AUTHKEY_INVALID_DIGEST
public static final AuthKeyAuthenticationHandler.AuthKeyState FAILED_INVALID_AUTHKEY_EXPIRED
public static final AuthKeyAuthenticationHandler.AuthKeyState FAILED_INVALID_AUTHKEY_INVALID_HTTP_METHOD
public static final AuthKeyAuthenticationHandler.AuthKeyState FAILED_INVALID_AUTHKEY_INVALID_IP
public static AuthKeyAuthenticationHandler.AuthKeyState[] values()
for (AuthKeyAuthenticationHandler.AuthKeyState c : AuthKeyAuthenticationHandler.AuthKeyState.values()) System.out.println(c);
public static AuthKeyAuthenticationHandler.AuthKeyState 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 nullpublic boolean isSet(AuthenticationContext ctxt)
ctxt
- the AuthenticationContext in which to check stateCopyright © 2001-2021 Jalios SA. All Rights Reserved.