net.liftweb.http.provider

HTTPCookie

case class HTTPCookie(name: String, value: Box[String], domain: Box[String], path: Box[String], maxAge: Box[Int], version: Box[Int], secure_?: Box[Boolean], httpOnly: Box[Boolean] = net.liftweb.common.Empty) extends Cloneable with Product with Serializable

Repersents an immutable representation of an HTTP Cookie

Linear Supertypes
Serializable, Serializable, Product, Equals, Cloneable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. HTTPCookie
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Cloneable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HTTPCookie(name: String, value: Box[String], domain: Box[String], path: Box[String], maxAge: Box[Int], version: Box[Int], secure_?: Box[Boolean], httpOnly: Box[Boolean] = net.liftweb.common.Empty)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): HTTPCookie

    Definition Classes
    HTTPCookie → AnyRef
  8. val domain: Box[String]

  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. val httpOnly: Box[Boolean]

  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. val maxAge: Box[Int]

  15. val name: String

  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  19. val path: Box[String]

  20. val secure_?: Box[Boolean]

  21. def setDomain(newDomain: String): HTTPCookie

    Returns a new HTTPCookie that preserve existing member values but sets the cookie domain to newDomain

    Returns a new HTTPCookie that preserve existing member values but sets the cookie domain to newDomain

    newDomain

    - the new cookie domain

    returns

    HTTPCookie

  22. def setHttpOnly(flagHttpOnly: Boolean): HTTPCookie

    Returns a new HTTPCookie that preserve existing member values but sets the httpOnly attribute

    Returns a new HTTPCookie that preserve existing member values but sets the httpOnly attribute

    flagHttpOnly

    - should the cookie be flagged as HTTP Only (only works in Servlet 3.0 containers)

    returns

    HTTPCookie

  23. def setMaxAge(newMaxAge: Int): HTTPCookie

    Returns a new HTTPCookie that preserve existing member values but sets the cookie maxAge to newVMaxAge

    Returns a new HTTPCookie that preserve existing member values but sets the cookie maxAge to newVMaxAge

    newMaxAge

    - the new cookie maxAge

    returns

    HTTPCookie

  24. def setPath(newPath: String): HTTPCookie

    Returns a new HTTPCookie that preserve existing member values but sets the cookie path to newPath

    Returns a new HTTPCookie that preserve existing member values but sets the cookie path to newPath

    newPath

    - the new cookie path

    returns

    HTTPCookie

  25. def setSecure(newSecure: Boolean): HTTPCookie

    Returns a new HTTPCookie that preserve existing member values but sets the cookie secure flag to newSecure

    Returns a new HTTPCookie that preserve existing member values but sets the cookie secure flag to newSecure

    newSecure

    - the new cookie secure flag

    returns

    HTTPCookie

  26. def setValue(newValue: String): HTTPCookie

    Returns a new HTTPCookie that preserve existing member values but sets the cookie value to newValue

    Returns a new HTTPCookie that preserve existing member values but sets the cookie value to newValue

    newValue

    - the new cookie value

    returns

    HTTPCookie

  27. def setVersion(newVersion: Int): HTTPCookie

    Returns a new HTTPCookie that preserve existing member values but sets the cookie version to newVersion

    Returns a new HTTPCookie that preserve existing member values but sets the cookie version to newVersion

    newVersion

    - the new cookie version

    returns

    HTTPCookie

  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. val value: Box[String]

  30. val version: Box[Int]

  31. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Cloneable

Inherited from AnyRef

Inherited from Any

Ungrouped