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
Ordering
- Alphabetic
- By Inheritance
Inherited
- FlashConfiguration
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- 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
The flash configuration
The name of the cookie used to store the session
Whether the flash cookie should set the secure flag or not
Whether the HTTP only attribute of the cookie should be set
The domain to set for the session cookie, if defined
The path for which this cookie is valid
The cookie's SameSite attribute
The JWT specific information