public class HttpCookie$
extends java.lang.Object
implements java.io.Serializable
Modifier and Type | Field and Description |
---|---|
static HttpCookie$ |
MODULE$
Static reference to the singleton instance of this Scala object.
|
Constructor and Description |
---|
HttpCookie$() |
Modifier and Type | Method and Description |
---|---|
HttpCookie |
apply(java.lang.String name,
java.lang.String value,
scala.Option<DateTime> expires,
scala.Option<java.lang.Object> maxAge,
scala.Option<java.lang.String> domain,
scala.Option<java.lang.String> path,
boolean secure,
boolean httpOnly,
scala.Option<java.lang.String> extension)
You are encouraged to provide only 'name' and 'value' here, and use
'withXxx' methods to populate other fields.
|
akka.parboiled2.CharPredicate |
domainChars() |
HttpCookie |
fromPair(HttpCookiePair pair,
scala.Option<DateTime> expires,
scala.Option<java.lang.Object> maxAge,
scala.Option<java.lang.String> domain,
scala.Option<java.lang.String> path,
boolean secure,
boolean httpOnly,
scala.Option<java.lang.String> extension)
Deprecated.
Use HttpCookiePair.toCookie and withXxx methods instead. Since 10.2.0.
|
akka.parboiled2.CharPredicate |
nameChars() |
akka.parboiled2.CharPredicate |
pathOrExtChars() |
akka.parboiled2.CharPredicate |
rawValueChars() |
scala.Option<scala.Tuple9<java.lang.String,java.lang.String,scala.Option<DateTime>,scala.Option<java.lang.Object>,scala.Option<java.lang.String>,scala.Option<java.lang.String>,java.lang.Object,java.lang.Object,scala.Option<java.lang.String>>> |
unapply(HttpCookie cookie)
Deprecated.
Pattern matching on HttpCookie is deprecated because of the big number of fields and potential future compatibility hazards. Please use other means to check the fields. Since 10.2.0.
|
akka.parboiled2.CharPredicate |
valueChars()
http://tools.ietf.org/html/rfc6265#section-4.1.1
US-ASCII characters excluding CTLs, whitespace DQUOTE, comma, semicolon, and backslash
|
public static final HttpCookie$ MODULE$
public HttpCookie apply(java.lang.String name, java.lang.String value, scala.Option<DateTime> expires, scala.Option<java.lang.Object> maxAge, scala.Option<java.lang.String> domain, scala.Option<java.lang.String> path, boolean secure, boolean httpOnly, scala.Option<java.lang.String> extension)
name
- (undocumented)value
- (undocumented)expires
- (undocumented)maxAge
- (undocumented)domain
- (undocumented)path
- (undocumented)secure
- (undocumented)httpOnly
- (undocumented)extension
- (undocumented)public scala.Option<scala.Tuple9<java.lang.String,java.lang.String,scala.Option<DateTime>,scala.Option<java.lang.Object>,scala.Option<java.lang.String>,scala.Option<java.lang.String>,java.lang.Object,java.lang.Object,scala.Option<java.lang.String>>> unapply(HttpCookie cookie)
public HttpCookie fromPair(HttpCookiePair pair, scala.Option<DateTime> expires, scala.Option<java.lang.Object> maxAge, scala.Option<java.lang.String> domain, scala.Option<java.lang.String> path, boolean secure, boolean httpOnly, scala.Option<java.lang.String> extension)
public akka.parboiled2.CharPredicate nameChars()
public akka.parboiled2.CharPredicate valueChars()
public akka.parboiled2.CharPredicate rawValueChars()
public akka.parboiled2.CharPredicate domainChars()
public akka.parboiled2.CharPredicate pathOrExtChars()