Package io.jans.as.model.ssa
Enum SsaRequestParam
- java.lang.Object
-
- java.lang.Enum<SsaRequestParam>
-
- io.jans.as.model.ssa.SsaRequestParam
-
- All Implemented Interfaces:
Serializable
,Comparable<SsaRequestParam>
public enum SsaRequestParam extends Enum<SsaRequestParam>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATED_AT
DESCRIPTION
EXP
EXPIRATION
GRANT_TYPES
IAT
ISS
ISSUER
JTI
LIFETIME
ONE_TIME_USE
ORG_ID
ROTATE_SSA
SOFTWARE_ID
SOFTWARE_ROLES
SSA
STATUS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
String
toString()
static SsaRequestParam
valueOf(String name)
Returns the enum constant of this type with the specified name.static SsaRequestParam[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORG_ID
public static final SsaRequestParam ORG_ID
-
EXPIRATION
public static final SsaRequestParam EXPIRATION
-
DESCRIPTION
public static final SsaRequestParam DESCRIPTION
-
SOFTWARE_ID
public static final SsaRequestParam SOFTWARE_ID
-
SOFTWARE_ROLES
public static final SsaRequestParam SOFTWARE_ROLES
-
GRANT_TYPES
public static final SsaRequestParam GRANT_TYPES
-
ONE_TIME_USE
public static final SsaRequestParam ONE_TIME_USE
-
ROTATE_SSA
public static final SsaRequestParam ROTATE_SSA
-
CREATED_AT
public static final SsaRequestParam CREATED_AT
-
ISSUER
public static final SsaRequestParam ISSUER
-
JTI
public static final SsaRequestParam JTI
-
ISS
public static final SsaRequestParam ISS
-
EXP
public static final SsaRequestParam EXP
-
IAT
public static final SsaRequestParam IAT
-
SSA
public static final SsaRequestParam SSA
-
STATUS
public static final SsaRequestParam STATUS
-
LIFETIME
public static final SsaRequestParam LIFETIME
-
-
Method Detail
-
values
public static SsaRequestParam[] 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 (SsaRequestParam c : SsaRequestParam.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SsaRequestParam 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()
-
toString
public String toString()
- Overrides:
toString
in classEnum<SsaRequestParam>
-
-