Class HttpCookie$

  • All Implemented Interfaces:
    java.io.Serializable

    public class HttpCookie$
    extends java.lang.Object
    implements java.io.Serializable
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static HttpCookie$ MODULE$
      Static reference to the singleton instance of this Scala object.
    • Constructor Summary

      Constructors 
      Constructor Description
      HttpCookie$()  
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method 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.
      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.
      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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MODULE$

        public static final HttpCookie$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • HttpCookie$

        public HttpCookie$()
    • Method Detail

      • apply

        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)
        You are encouraged to provide only 'name' and 'value' here, and use 'withXxx' methods to populate other fields.
        Parameters:
        name - (undocumented)
        value - (undocumented)
        expires - (undocumented)
        maxAge - (undocumented)
        domain - (undocumented)
        path - (undocumented)
        secure - (undocumented)
        httpOnly - (undocumented)
        extension - (undocumented)
        Returns:
        (undocumented)
      • unapply

        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)
        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.
      • fromPair

        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)
        Deprecated.
        Use HttpCookiePair.toCookie and withXxx methods instead. Since 10.2.0.
      • nameChars

        public akka.parboiled2.CharPredicate nameChars()
      • valueChars

        public 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
        Returns:
        (undocumented)
      • rawValueChars

        public akka.parboiled2.CharPredicate rawValueChars()
      • domainChars

        public akka.parboiled2.CharPredicate domainChars()
      • pathOrExtChars

        public akka.parboiled2.CharPredicate pathOrExtChars()