public enum KeyUriType extends java.lang.Enum<KeyUriType>
| Enum Constant and Description |
|---|
JWKS
The Uri of the certificate provides keys as Json in JWKS format
|
OPEN_ID_DISCOVERY
The Uri of the certificate defines the root of the OpenID
Provider To load the certificate the configuration is discovered from "/.well-known/openid-configuration" below the
Uri.
|
PEM
The Uri of the certificate provides the certificate in PEM format.
|
| Modifier and Type | Method and Description |
|---|---|
static KeyUriType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyUriType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyUriType PEM
public static final KeyUriType OPEN_ID_DISCOVERY
jwks_uripublic static final KeyUriType JWKS
public static KeyUriType[] values()
for (KeyUriType c : KeyUriType.values()) System.out.println(c);
public static KeyUriType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null