public static enum PublicKeyLocator.StrategyType extends Enum<PublicKeyLocator.StrategyType>
Enum Constant and Description |
---|
CERT_CHAIN
certificate chain in
x5c header claim |
CERT_CHAIN_URL
certificate chain URL in
x5u header claim |
JWK
JSON web key in
jwk header claim |
JWK_URL
JSON web key URL in
jku header claim |
Modifier and Type | Method and Description |
---|---|
static PublicKeyLocator.StrategyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PublicKeyLocator.StrategyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublicKeyLocator.StrategyType CERT_CHAIN
x5c
header claimpublic static final PublicKeyLocator.StrategyType CERT_CHAIN_URL
x5u
header claimpublic static final PublicKeyLocator.StrategyType JWK
jwk
header claimpublic static final PublicKeyLocator.StrategyType JWK_URL
jku
header claimpublic static PublicKeyLocator.StrategyType[] values()
for (PublicKeyLocator.StrategyType c : PublicKeyLocator.StrategyType.values()) System.out.println(c);
public static PublicKeyLocator.StrategyType 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 © 2019. All rights reserved.