public enum ConfirmationType extends Enum<ConfirmationType>
| Enum Constant and Description |
|---|
BEARER
Confirmation type indicating that the token does not contain
requester-specific confirmation information.
|
HOLDER_OF_KEY
Confirmation type indicating that the requester's certificate is embedded
into the token.
|
| Modifier and Type | Method and Description |
|---|---|
static ConfirmationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfirmationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfirmationType BEARER
public static final ConfirmationType HOLDER_OF_KEY
public static ConfirmationType[] values()
for (ConfirmationType c : ConfirmationType.values()) System.out.println(c);
public static ConfirmationType 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 nullCopyright © 2016. All rights reserved.