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]) 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. Hide All
  2. Show all
  1. HTTPCookie
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Cloneable
  7. AnyRef
  8. Any
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])

Value Members

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

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  7. def canEqual (arg0: Any): Boolean

    Definition Classes
    HTTPCookie → Equals
  8. def clone (): HTTPCookie

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

  10. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  11. def equals (arg0: Any): Boolean

    Definition Classes
    HTTPCookie → Equals → AnyRef → Any
  12. def finalize (): Unit

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

    Attributes
    final
    Definition Classes
    AnyRef
  14. def hashCode (): Int

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

  16. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  17. val maxAge : Box[Int]

  18. val name : String

  19. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  20. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  21. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  22. val path : Box[String]

  23. def productArity : Int

    Definition Classes
    HTTPCookie → Product
  24. def productElement (arg0: Int): Any

    Definition Classes
    HTTPCookie → Product
  25. def productIterator : Iterator[Any]

    Definition Classes
    Product
  26. def productPrefix : String

    Definition Classes
    HTTPCookie → Product
  27. val secure_? : Box[Boolean]

  28. 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

  29. 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

  30. 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

  31. 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

  32. 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

  33. 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

  34. 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

  35. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  36. def toString (): String

    Definition Classes
    HTTPCookie → AnyRef → Any
  37. val value : Box[String]

  38. val version : Box[Int]

  39. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  42. def productElements : Iterator[Any]

    Definition Classes
    Product
    Annotations
    @deprecated
    Deprecated

    use productIterator instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Cloneable

Inherited from AnyRef

Inherited from Any