public enum CommandType extends Enum<CommandType>
| Modifier and Type | Method and Description |
|---|---|
static CommandType |
fromValue(String v) |
String |
getReturnType() |
String |
getValue() |
boolean |
isAuthorizationRequired() |
static CommandType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommandType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandType REGISTER_SITE
public static final CommandType UPDATE_SITE
public static final CommandType REMOVE_SITE
public static final CommandType GET_AUTHORIZATION_URL
public static final CommandType GET_AUTHORIZATION_CODE
public static final CommandType GET_TOKENS_BY_CODE
public static final CommandType GET_USER_INFO
public static final CommandType GET_LOGOUT_URI
public static final CommandType GET_ACCESS_TOKEN_BY_REFRESH_TOKEN
public static final CommandType INTROSPECT_ACCESS_TOKEN
public static final CommandType VALIDATE
public static final CommandType CHECK_ID_TOKEN
public static final CommandType CHECK_ACCESS_TOKEN
public static final CommandType RS_PROTECT
public static final CommandType RS_MODIFY
public static final CommandType RS_CHECK_ACCESS
public static final CommandType INTROSPECT_RPT
public static final CommandType RP_GET_RPT
public static final CommandType RP_GET_CLAIMS_GATHERING_URL
public static final CommandType AUTHORIZATION_CODE_FLOW
public static final CommandType IMPLICIT_FLOW
public static final CommandType GET_CLIENT_TOKEN
public static final CommandType GET_RP
public static final CommandType GET_JWKS
public static final CommandType GET_DISCOVERY
public static final CommandType ISSUER_DISCOVERY
public static final CommandType GET_RP_JWKS
public static final CommandType GET_REQUEST_OBJECT_JWT
public static final CommandType GET_REQUEST_URI
public static final CommandType INITIATE_THIRD_PARTY_LOGIN
public static CommandType[] values()
for (CommandType c : CommandType.values()) System.out.println(c);
public static CommandType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic boolean isAuthorizationRequired()
public String getValue()
public String getReturnType()
public static CommandType fromValue(String v)
Copyright © 2021. All rights reserved.