Enum AssertionTypeEnum
- java.lang.Object
-
- java.lang.Enum<AssertionTypeEnum>
-
- org.certificateservices.messages.assertion.AssertionTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AssertionTypeEnum>
public enum AssertionTypeEnum extends java.lang.Enum<AssertionTypeEnum>
Defines available types of assertions.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPROVAL_TICKETAUTHORIZATION_TICKETUSER_DATA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<?>getAssertionDataClass()java.lang.StringgetAttributeValue()static AssertionTypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AssertionTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHORIZATION_TICKET
public static final AssertionTypeEnum AUTHORIZATION_TICKET
-
USER_DATA
public static final AssertionTypeEnum USER_DATA
-
APPROVAL_TICKET
public static final AssertionTypeEnum APPROVAL_TICKET
-
-
Method Detail
-
values
public static AssertionTypeEnum[] 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 (AssertionTypeEnum c : AssertionTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AssertionTypeEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getAttributeValue
public java.lang.String getAttributeValue()
- Returns:
- the value of the AssertionType SAML Attribute
-
getAssertionDataClass
public java.lang.Class<?> getAssertionDataClass()
- Returns:
- the related assertion data class.
-
-