Package

pdi

jwt

Permalink

package jwt

Visibility
  1. Public
  2. All

Type Members

  1. trait JwtPlayImplicits extends AnyRef

    Permalink
  2. case class JwtSession(headerData: JsObject, claimData: JsObject, signature: String) extends Product with Serializable

    Permalink

    Similar to the default Play Session but using JsObject instead of Map[String, String].

    Similar to the default Play Session but using JsObject instead of Map[String, String]. The data is separated into two attributes: headerData and claimData. There is also a optional signature. Most of the time, you should only care about the claimData which stores the claim of the token containing the custom values you eventually put in it. That's why all methods of JwtSession (such as add and removing values) only modifiy the claimData.

    To see a full list of samples, check the online documentation.

    Warning Be aware that if you override the claimData (using withClaim for example), you might override some attributes that were automatically put inside the claim such as the expiration of the token.

Value Members

  1. object JwtSession extends JwtJsonImplicits with JwtPlayImplicits with Serializable

    Permalink

Ungrouped