Convert value
to its JSON counterpart and add it to claimData
Add this (key, value) to claimData
(existing key will be overriden)
Merge the value
with claimData
Add a sequence of (key, value) to claimData
Remove one key from claimData
Remove a sequence of keys from claimData
Alias of get
Retrieve the value corresponding to fieldName
from claimData
After retrieving the value, try to read it as T, if no value or fails, returns None.
If your Play app config has a session.maxAge
, it will extend the expiration by that amount
Encode the session as a JSON Web Token
Overrride the claimData
Override the headerData
Override the signature
(seriously, you should never need this method)
Similar to the default Play Session but using JsObject instead of Map[String, String]. The data is separated into two attributes:
headerData
andclaimData
. There is also a optional signature. Most of the time, you should only care about theclaimData
which stores the claim of the token containing the custom values you eventually put in it. That's why all methods ofJwtSession
(such as add and removing values) only modifiy theclaimData
.To see a full list of samples, check the online documentation.
Warning Be aware that if you override the
claimData
(usingwithClaim
for example), you might override some attributes that were automatically put inside the claim such as the expiration of the token.