class DefaultSessionCookieBaker extends SessionCookieBaker with FallbackCookieDataCodec
A session cookie that reads in both signed and JWT cookies, and writes out JWT cookies.
- Source
- Session.scala
- Alphabetic
- By Inheritance
- DefaultSessionCookieBaker
- FallbackCookieDataCodec
- SessionCookieBaker
- CookieDataCodec
- CookieBaker
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new DefaultSessionCookieBaker()
- new DefaultSessionCookieBaker(config: SessionConfiguration, secretConfiguration: SecretConfiguration, cookieSigner: CookieSigner)
- Annotations
- @Inject()
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def COOKIE_NAME: String
The cookie name.
The cookie name.
- Definition Classes
- SessionCookieBaker → CookieBaker
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- val config: SessionConfiguration
- Definition Classes
- DefaultSessionCookieBaker → SessionCookieBaker
- def decode(encodedData: String): Map[String, String]
Decodes from an encoded
String
.Decodes from an encoded
String
.- Definition Classes
- FallbackCookieDataCodec → CookieDataCodec
- def decodeCookieToMap(cookie: Option[Cookie]): Map[String, String]
Decodes the data from a
Cookie
.Decodes the data from a
Cookie
.- Definition Classes
- CookieBaker
- def decodeFromCookie(cookie: Option[Cookie]): Session
Decodes the data from a
Cookie
.Decodes the data from a
Cookie
.- Definition Classes
- CookieBaker
- def deserialize(data: Map[String, String]): Session
Builds the cookie object from the given data map.
Builds the cookie object from the given data map.
- data
the data map to build the cookie object
- returns
a new cookie object
- Definition Classes
- SessionCookieBaker → CookieBaker
- def discard: DiscardingCookie
- Definition Classes
- CookieBaker
- def domain: Option[String]
The cookie domain.
The cookie domain. Defaults to None.
- Definition Classes
- SessionCookieBaker → CookieBaker
- lazy val emptyCookie: Session
Default cookie, returned in case of error or if missing in the HTTP headers.
Default cookie, returned in case of error or if missing in the HTTP headers.
- Definition Classes
- SessionCookieBaker → CookieBaker
- def encode(data: Map[String, String]): String
Encodes the data as a
String
.Encodes the data as a
String
.- Definition Classes
- FallbackCookieDataCodec → CookieDataCodec
- def encodeAsCookie(data: Session): Cookie
Encodes the data as a
Cookie
.Encodes the data as a
Cookie
.- Definition Classes
- CookieBaker
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def httpOnly: Boolean
true
if the Cookie should have the httpOnly flag, disabling access from Javascript.true
if the Cookie should have the httpOnly flag, disabling access from Javascript. Defaults to true.- Definition Classes
- SessionCookieBaker → CookieBaker
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val isSigned: Boolean
true
if the Cookie is signed.true
if the Cookie is signed. Defaults to false.- Definition Classes
- SessionCookieBaker → CookieBaker
- val jwtCodec: JWTCookieDataCodec
- Definition Classes
- DefaultSessionCookieBaker → FallbackCookieDataCodec
- def maxAge: Option[Int]
The cookie expiration date in seconds,
None
for a transient cookieThe cookie expiration date in seconds,
None
for a transient cookie- Definition Classes
- SessionCookieBaker → CookieBaker
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def path: String
The cookie path.
The cookie path.
- Definition Classes
- SessionCookieBaker → CookieBaker
- def sameSite: Option[SameSite]
The value of the SameSite attribute of the cookie.
The value of the SameSite attribute of the cookie. Defaults to no SameSite.
- Definition Classes
- SessionCookieBaker → CookieBaker
- val secretConfiguration: SecretConfiguration
- def secure: Boolean
true
if the Cookie should have the secure flag, restricting usage to https.true
if the Cookie should have the secure flag, restricting usage to https. Defaults to false.- Definition Classes
- SessionCookieBaker → CookieBaker
- def serialize(session: Session): Map[String, String]
Converts the given cookie object into a data map.
Converts the given cookie object into a data map.
- returns
a new
Map
storing the key-value pairs for the given cookie
- Definition Classes
- SessionCookieBaker → CookieBaker
- val signedCodec: UrlEncodedCookieDataCodec
- Definition Classes
- DefaultSessionCookieBaker → FallbackCookieDataCodec
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)