Constructor and Description |
---|
JwtClaimsSet()
Constructs a new, empty JwtClaimsSet.
|
JwtClaimsSet(Map<String,Object> claims)
Constructs a new JwtClaimsSet, with its claims set to the contents of the given Map.
|
Modifier and Type | Method and Description |
---|---|
void |
addAudience(String audience)
Adds an entry to the JWT's intended audience list, in the Claims Set.
|
void |
addAudience(URI audience)
Adds an entry to the JWT's intended audience list, in the Claims Set.
|
String |
build()
Builds the JWT's Claims Set into a
String representation of a JSON object. |
JwtClaimsSet |
copy()
Create a copy of the current payload.
|
List<String> |
getAudience()
Gets the intended audience for the JWT from the Claims Set.
|
Object |
getClaim(String key)
Gets a claim value for the specified key.
|
<T> T |
getClaim(String key,
Class<T> clazz)
Gets a claim value for the specified claim name and then casts it to the specified type.
|
Date |
getExpirationTime()
Gets the expiration time of the JWT from the Claims Set.
|
Date |
getIssuedAtTime()
Gets the time the JWT was issued at, from the Claims Set.
|
String |
getIssuer()
Gets the issuer this JWT was issued by.
|
String |
getJwtId()
Gets the unique ID of the JWT.
|
Date |
getNotBeforeTime()
Gets the time the JWT is not allowed to be processed before, from the Claims Set.
|
String |
getSubject()
Gets the subject this JWT is issued to.
|
String |
getType()
Gets the type of the contents of the Claims Set.
|
void |
setClaim(String key,
Object value)
Sets a claim with the specified name and value.
|
void |
setClaims(Map<String,Object> claims)
Sets claims using the values contained in the specified map.
|
void |
setExpirationTime(Date expirationTime)
Sets the expiration time of the JWT in the Claims Set.
|
void |
setIssuedAtTime(Date issuedAtTime)
Sets the time the JWT was issued at, in the Claims Set.
|
void |
setIssuer(String issuer)
Sets the issuer this JWT was issued by.
|
void |
setIssuer(URI issuer)
Sets the issuer this JWT was issued by.
|
void |
setJwtId(String jwtId)
Sets the unique ID of the JWT.
|
void |
setNotBeforeTime(Date notBeforeTime)
Sets the time the JWT is not allowed to be processed before, in the Claims Set.
|
void |
setSubject(String subject)
Sets the subject this JWT is issued to.
|
void |
setSubject(URI subject)
Sets the subject this JWT is issued to.
|
void |
setType(String type)
Gets the type of the contents of the Claims Set.
|
checkListValuesAreOfType, checkValueIsOfType, get, isDefined, isValueOfType, keys, put, toJsonValue, toString
public void setType(String type)
The values used for this claim SHOULD come from the same value space as the JWT header parameter "typ", with the same rules applying.
type
- The Claims Set content type.public String getType()
The values used for this claim SHOULD come from the same value space as the JWT header parameter "typ", with the same rules applying.
public void setJwtId(String jwtId)
jwtId
- The JWT's ID.public String getJwtId()
null
if claim not present.public void setIssuer(String issuer)
The given issuer can be any arbitrary string without any ":" characters, if the string does contain a ":" character then it must be a valid URI.
issuer
- The JWT's issuer.public void setIssuer(URI issuer)
issuer
- The JWT's issuer.public String getIssuer()
null
if claim not present.public void setSubject(String subject)
The given subject can be any arbitrary string without any ":" characters, if the string does contain a ":" character then it must be a valid URI.
subject
- The JWT's principal.JwtClaimsSet.setSubject(java.net.URI)
public void setSubject(URI subject)
subject
- The JWT's principal.JwtClaimsSet.setSubject(String)
public String getSubject()
null
if claim not present.public void addAudience(String audience)
The given audience can be any arbitrary string without any ":" characters, if the string does contain a ":" character then it must be a valid URI.
audience
- The JWT's intended audience.JwtClaimsSet.addAudience(java.net.URI)
public void addAudience(URI audience)
audience
- The JWT's intended audience.JwtClaimsSet.addAudience(String)
public List<String> getAudience()
null
if claim not present.public void setIssuedAtTime(Date issuedAtTime)
The given date will be converted into an IntDate
to be stored in the JWT Claims Set.
issuedAtTime
- The JWT's issued at time.public Date getIssuedAtTime()
null
if claim not present.public void setNotBeforeTime(Date notBeforeTime)
The given date will be converted into an IntDate
to be stored in the JWT Claims Set.
notBeforeTime
- The JWT's not before time.public Date getNotBeforeTime()
null
if claim not present.public void setExpirationTime(Date expirationTime)
The given date will be converted into an IntDate
to be stored in the JWT Claims Set.
expirationTime
- The JWT's expiration time.public Date getExpirationTime()
null
if claim not present.public void setClaim(String key, Object value)
If the key matches one of the reserved claim names, then the relevant set method is called to set that claim with the specified name and value.
key
- The claim name.value
- The claim value.public void setClaims(Map<String,Object> claims)
claims
- The Map to use to set the claims.public Object getClaim(String key)
If the key matches one of the reserved claim names, then the relevant get method is called to get that claim value.
key
- The claim name.public <T> T getClaim(String key, Class<T> clazz)
T
- The required type for the claim value.key
- The claim name.clazz
- The class of the required type.JwtClaimsSet.getClaim(String)
public String build()
String
representation of a JSON object.build
in interface Payload
public JwtClaimsSet copy()
Payload
Copyright © 2010-2018, ForgeRock All Rights Reserved.