Packages

final class RequestCookieJar extends AnyVal

Annotations
@deprecated
Deprecated

(Since version 0.21.20) Use the CookieJar middleware instead

Source
RequestCookieJar.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestCookieJar
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. def ++(cookies: Iterable[RequestCookie]): RequestCookieJar
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  5. def apply(key: String): RequestCookie
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def contains(key: String): Boolean
  8. val cookies: List[RequestCookie]
  9. def default(key: String): RequestCookie
  10. def empty: RequestCookieJar
  11. def filterKeys(p: (String) ⇒ Boolean): RequestCookieJar

    Filters this map by retaining only keys satisfying a predicate.

    Filters this map by retaining only keys satisfying a predicate.

    p

    the predicate used to test keys

    returns

    an immutable map consisting only of those key value pairs of this map where the key satisfies the predicate p. The resulting map wraps the original map without copying any elements.

  12. def get(key: String): Option[RequestCookie]
  13. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  14. def getOrElse(key: String, default: ⇒ String): RequestCookie
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def iterator: Iterator[RequestCookie]
  17. def keySet: Set[String]
  18. def keys: Iterable[String]

    Collects all keys of this map in an iterable collection.

    Collects all keys of this map in an iterable collection.

    returns

    the keys of this map as an iterable.

  19. def keysIterator: Iterator[String]

    Creates an iterator for all keys.

    Creates an iterator for all keys.

    returns

    an iterator over all keys.

  20. def toString(): String
    Definition Classes
    RequestCookieJar → Any
  21. def values: Iterable[String]

    Collects all values of this map in an iterable collection.

    Collects all values of this map in an iterable collection.

    returns

    the values of this map as an iterable.

  22. def valuesIterator: Iterator[Any]

    Creates an iterator for all values in this map.

    Creates an iterator for all values in this map.

    returns

    an iterator over all values that are associated with some key in this map.

Inherited from AnyVal

Inherited from Any

Ungrouped