Class/Object

net.liftweb.http.provider

HTTPCookie

Related Docs: object HTTPCookie | package provider

Permalink

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] = 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
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] = Empty)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): HTTPCookie

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

    Permalink
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def finalize(): Unit

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

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

    Permalink
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. val maxAge: Box[Int]

    Permalink
  13. val name: String

    Permalink
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. val path: Box[String]

    Permalink
  18. val secure_?: Box[Boolean]

    Permalink
  19. def setDomain(newDomain: String): HTTPCookie

    Permalink

    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

  20. def setHttpOnly(flagHttpOnly: Boolean): HTTPCookie

    Permalink

    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

  21. def setMaxAge(newMaxAge: Int): HTTPCookie

    Permalink

    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

  22. def setPath(newPath: String): HTTPCookie

    Permalink

    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

  23. def setSecure(newSecure: Boolean): HTTPCookie

    Permalink

    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

  24. def setValue(newValue: String): HTTPCookie

    Permalink

    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

  25. def setVersion(newVersion: Int): HTTPCookie

    Permalink

    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

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

    Permalink
    Definition Classes
    AnyRef
  27. val value: Box[String]

    Permalink
  28. val version: Box[Int]

    Permalink
  29. final def wait(): Unit

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

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

    Permalink
    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