trait JWTCookieDataCodec extends CookieDataCodec

JWT cookie encoding and decoding functionality

Source
Cookie.scala
Linear Supertypes
CookieDataCodec, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JWTCookieDataCodec
  2. CookieDataCodec
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def jwtConfiguration: JWTConfiguration
  2. abstract def secretConfiguration: SecretConfiguration

Concrete Value Members

  1. def decode(encodedString: String): Map[String, String]

    Decodes from an encoded String.

    Decodes from an encoded String.

    Definition Classes
    CookieDataCodec
  2. def encode(data: Map[String, String]): String

    Encodes the data as a String.

    Encodes the data as a String.

    Definition Classes
    CookieDataCodec