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. def ++(cookies: Iterable[RequestCookie]): RequestCookieJar
  2. def apply(key: String): RequestCookie
  3. def contains(key: String): Boolean
  4. val cookies: List[RequestCookie]
  5. def default(key: String): RequestCookie
  6. def empty: RequestCookieJar
  7. 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.

  8. def get(key: String): Option[RequestCookie]
  9. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  10. def getOrElse(key: String, default: ⇒ String): RequestCookie
  11. def iterator: Iterator[RequestCookie]
  12. def keySet: Set[String]
  13. 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.

  14. def keysIterator: Iterator[String]

    Creates an iterator for all keys.

    Creates an iterator for all keys.

    returns

    an iterator over all keys.

  15. def toString(): String
    Definition Classes
    RequestCookieJar → Any
  16. 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.

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