Uses of Class
com.sonalb.net.http.cookie.Cookie

Packages that use Cookie
com.sonalb.net.http.cookie [jCookie] Contains classes related to state management (cookie-handling) using HTTP. 
 

Uses of Cookie in com.sonalb.net.http.cookie
 

Methods in com.sonalb.net.http.cookie that return Cookie
static Cookie RFC2965CookieParser.parseSingleCookieV0(java.lang.String s, java.net.URL url, boolean bStrict)
          Converts a single cookie-string into a Cookie object, for Version 0
static Cookie RFC2965CookieParser.parseSingleCookieV1(java.lang.String s, java.net.URL url, boolean bStrict)
          Converts a single cookie-string into a Cookie object, for Version 1
 

Methods in com.sonalb.net.http.cookie with parameters of type Cookie
 boolean RFC2965CookieParser.allowedCookie(Cookie c, java.net.URL url)
           
 boolean CookieParser.allowedCookie(Cookie c, java.net.URL url)
          Checks whether a request to the given URL is allowed to return the specified Cookie.
 boolean CookieMatcher.doMatch(Cookie cookie)
          Checks whether the given Cookie satisfies the custom criteria.
 boolean RFC2965CookieParser.sendCookieWithURL(Cookie c, java.net.URL url, boolean bRespectExpires)
          Determines whether a Cookie is eligible to be sent alongwith the request for a given URL.
 boolean CookieParser.sendCookieWithURL(Cookie c, java.net.URL url, boolean bRespectExpires)
          Checks whether the given Cookie can be sent alongwith a request for the given URL.
static java.lang.String RFC2965CookieParser.toCookieHeaderForm(Cookie c, boolean bIncludeVersion)
          Converts a single Cookie to a form suitable for sending with a request, back to the server.