Enum AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE
- java.lang.Object
-
- java.lang.Enum<AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE>
-
- net.shibboleth.idp.plugin.oidc.op.profile.flow.AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE>
- Enclosing class:
- AbstractIssuedJWTSecurityTest
public static enum AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE extends Enum<AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHORIZE_ACCESS_TOKENAUTHORIZE_ID_TOKENREQUEST_OBJECTTOKEN_ACCESS_TOKENTOKEN_ID_TOKENUSERINFO
-
Constructor Summary
Constructors Modifier Constructor Description privateJWT_FETCHING_TYPE()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USERINFO
public static final AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE USERINFO
-
TOKEN_ID_TOKEN
public static final AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE TOKEN_ID_TOKEN
-
TOKEN_ACCESS_TOKEN
public static final AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE TOKEN_ACCESS_TOKEN
-
AUTHORIZE_ID_TOKEN
public static final AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE AUTHORIZE_ID_TOKEN
-
AUTHORIZE_ACCESS_TOKEN
public static final AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE AUTHORIZE_ACCESS_TOKEN
-
REQUEST_OBJECT
public static final AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE REQUEST_OBJECT
-
-
Method Detail
-
values
public static AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE[] 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 (AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE c : AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractIssuedJWTSecurityTest.JWT_FETCHING_TYPE 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
-
-