Packages

abstract class HttpCookie extends AnyRef

Annotations
@DoNotInherit()
Source
HttpCookie.java
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HttpCookie
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new HttpCookie()

Abstract Value Members

  1. abstract def getDomain(): Optional[String]
  2. abstract def getExpires(): Optional[DateTime]
  3. abstract def getExtension(): Optional[String]
  4. abstract def getMaxAge(): OptionalLong
  5. abstract def getPath(): Optional[String]
  6. abstract def getSameSite(): Optional[SameSite]
  7. abstract def httpOnly(): Boolean
  8. abstract def name(): String
  9. abstract def pair(): HttpCookiePair
  10. abstract def secure(): Boolean
  11. abstract def value(): String
  12. abstract def withDomain(domain: String): HttpCookie

    Returns a copy of this HttpCookie instance with the given domain set.

  13. abstract def withExpires(dateTime: DateTime): HttpCookie

    Returns a copy of this HttpCookie instance with the given expiration set.

  14. abstract def withExtension(extension: String): HttpCookie

    Returns a copy of this HttpCookie instance with the given extension set.

  15. abstract def withHttpOnly(httpOnly: Boolean): HttpCookie

    Returns a copy of this HttpCookie instance with the given http-only flag set.

  16. abstract def withMaxAge(maxAge: Long): HttpCookie

    Returns a copy of this HttpCookie instance with the given max age set.

  17. abstract def withPath(path: String): HttpCookie

    Returns a copy of this HttpCookie instance with the given path set.

  18. abstract def withSameSite(sameSite: Optional[SameSite]): HttpCookie

    Returns a copy of this HttpCookie instance with the given Optional SameSite set.

  19. abstract def withSameSite(sameSite: SameSite): HttpCookie

    Returns a copy of this HttpCookie instance with the given SameSite set.

  20. abstract def withSecure(secure: Boolean): HttpCookie

    Returns a copy of this HttpCookie instance with the given secure flag set.