All Downloads are FREE. Search and download functionalities are using the official Maven repository.

skinny.micro.cookie.CookieOptions.scala Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package skinny.micro.cookie

/**
 * Cookie options.
 */
case class CookieOptions(
  domain: String = "",
  path: String = "",
  maxAge: Int = -1,
  secure: Boolean = false,
  comment: String = "",
  httpOnly: Boolean = false,
  version: Int = 0,
  encoding: String = "UTF-8"
)

object CookieOptions {

  val default = CookieOptions()

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy