CookieProperties

data class CookieProperties(val refreshTokenCookieName: String, val httpOnly: Boolean, val secure: Boolean, val sameSite: String, val path: String)(source)

Refresh-token cookie settings used by the API Gateway BFF.

Constructors

Link copied to clipboard
constructor(refreshTokenCookieName: String, httpOnly: Boolean, secure: Boolean, sameSite: String, path: String)

Properties

Link copied to clipboard

Set-Cookie; HttpOnly flag (block JS access).

Link copied to clipboard

Path scope of the cookie.

Link copied to clipboard

Name of the cookie carrying the refresh token.

Link copied to clipboard

SameSite policy: Strict, Lax, or None.

Link copied to clipboard

Set-Cookie; Secure flag (HTTPS-only).