public enum SupportedClaim extends Enum<SupportedClaim>
| Enum Constant and Description |
|---|
AUDIENCE
RFC 7519 Section 4.1.3
|
EXPIRATION
RFC 7519 Section 4.1.4
|
ISSUED_AT
RFC 7519 Section 4.1.6
|
ISSUER
RFC 7519 Section 4.1.1
|
JWT_ID
RFC 7519 Section 4.1.7
|
NOT_BEFORE
RFC 7519 Section 4.1.5
|
PREFERRED_USERNAME
Preferred Username defined in OpenID Connect Core 1.0 Standard Claims
|
SUBJECT
RFC 7519 Section 4.1.2
|
| Modifier and Type | Method and Description |
|---|---|
String |
getClaim() |
static SupportedClaim |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SupportedClaim[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportedClaim ISSUER
public static final SupportedClaim SUBJECT
public static final SupportedClaim AUDIENCE
public static final SupportedClaim EXPIRATION
public static final SupportedClaim NOT_BEFORE
public static final SupportedClaim ISSUED_AT
public static final SupportedClaim JWT_ID
public static final SupportedClaim PREFERRED_USERNAME
private final String claim
public static SupportedClaim[] values()
for (SupportedClaim c : SupportedClaim.values()) System.out.println(c);
public static SupportedClaim 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 nullpublic String getClaim()
Copyright © 2023 Apache NiFi Project. All rights reserved.