case class FlashConfiguration(cookieName: String = "PLAY_FLASH", secure: Boolean = false, httpOnly: Boolean = true, domain: Option[String] = None, path: String = "/", sameSite: Option[SameSite] = Some(SameSite.Lax), jwt: JWTConfiguration = JWTConfiguration()) extends Product with Serializable
The flash configuration
- cookieName
The name of the cookie used to store the session
- secure
Whether the flash cookie should set the secure flag or not
- httpOnly
Whether the HTTP only attribute of the cookie should be set
- domain
The domain to set for the session cookie, if defined
- path
The path for which this cookie is valid
- sameSite
The cookie's SameSite attribute
- jwt
The JWT specific information
- Source
- HttpConfiguration.scala
- Alphabetic
- By Inheritance
- FlashConfiguration
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new FlashConfiguration(cookieName: String = "PLAY_FLASH", secure: Boolean = false, httpOnly: Boolean = true, domain: Option[String] = None, path: String = "/", sameSite: Option[SameSite] = Some(SameSite.Lax), jwt: JWTConfiguration = JWTConfiguration())
- cookieName
The name of the cookie used to store the session
- secure
Whether the flash cookie should set the secure flag or not
- httpOnly
Whether the HTTP only attribute of the cookie should be set
- domain
The domain to set for the session cookie, if defined
- path
The path for which this cookie is valid
- sameSite
The cookie's SameSite attribute
- jwt
The JWT specific information