Packages

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)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): HTTPCookie
    Definition Classes
    HTTPCookie → AnyRef
  6. val domain: Box[String]
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  10. val httpOnly: Box[Boolean]
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. val maxAge: Box[Int]
  13. val name: String
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  17. val path: Box[String]
  18. val secure_?: Box[Boolean]
  19. 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

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

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

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

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

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

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

  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. val value: Box[String]
  28. val version: Box[Int]
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. 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