Package org.keycloak.jose.jws
Class JWSHeader
- java.lang.Object
-
- org.keycloak.jose.jws.JWSHeader
-
- All Implemented Interfaces:
Serializable
,JOSEHeader
public class JWSHeader extends Object implements JOSEHeader
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Algorithm
getAlgorithm()
String
getContentType()
String
getKeyId()
String
getRawAlgorithm()
Returns the algorithm used to sign or encrypt the JWT from the JOSE header.String
getType()
String
toString()
-
-
-
Method Detail
-
getAlgorithm
public Algorithm getAlgorithm()
-
getRawAlgorithm
public String getRawAlgorithm()
Description copied from interface:JOSEHeader
Returns the algorithm used to sign or encrypt the JWT from the JOSE header.- Specified by:
getRawAlgorithm
in interfaceJOSEHeader
- Returns:
- the algorithm from the JOSE header
-
getType
public String getType()
-
getContentType
public String getContentType()
-
getKeyId
public String getKeyId()
- Specified by:
getKeyId
in interfaceJOSEHeader
-
-