Package com.auth0.jwt
Class HeaderParams
- java.lang.Object
-
- com.auth0.jwt.HeaderParams
-
public final class HeaderParams extends java.lang.Object
Contains constants representing the JWT header parameter names.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ALGORITHM
The algorithm used to sign a JWT.static java.lang.String
CONTENT_TYPE
The content type of the JWT.static java.lang.String
KEY_ID
The key ID of a JWT used to specify the key for signature validation.static java.lang.String
TYPE
The media type of the JWT.
-
-
-
Field Detail
-
ALGORITHM
public static final java.lang.String ALGORITHM
The algorithm used to sign a JWT.- See Also:
- Constant Field Values
-
CONTENT_TYPE
public static final java.lang.String CONTENT_TYPE
The content type of the JWT.- See Also:
- Constant Field Values
-
TYPE
public static final java.lang.String TYPE
The media type of the JWT.- See Also:
- Constant Field Values
-
KEY_ID
public static final java.lang.String KEY_ID
The key ID of a JWT used to specify the key for signature validation.- See Also:
- Constant Field Values
-
-