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

Packages that use CookieJar
com.sonalb.net.http Contains classes related to the Hyper Text Transport Protocol (HTTP) 
com.sonalb.net.http.cookie [jCookie] Contains classes related to state management (cookie-handling) using HTTP. 
 

Uses of CookieJar in com.sonalb.net.http
 

Methods in com.sonalb.net.http that return CookieJar
 CookieJar HTTPRedirectHandler.getCookieJar()
          Gets the CookieJar containing any pre-existing Cookies, as well as new ones extracted during processing.
 

Methods in com.sonalb.net.http with parameters of type CookieJar
 void HTTPRedirectHandler.addCookies(CookieJar cj)
          Adds some Cookies to the existing Cookies in an HTTPRedirectHandler.
 void HTTPRedirectHandler.setCookieJar(CookieJar cj)
          Sets the CookieJar containing Cookies to be used during cookie-handling.
 

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

Methods in com.sonalb.net.http.cookie that return CookieJar
 CookieJar CookieJar.getCookies(CookieMatcher cm)
          Gets all Cookies that match the given CookieMatcher.
 CookieJar CookieJar.getCookies(java.lang.String cookieName)
          Gets all Cookies with the given name.
 CookieJar Client.getCookies(java.net.URLConnection urlConn)
          Processes cookie headers from the given URLConnection.
static CookieJar CookieUtils.getCookiesForURL(CookieJar cj, CookieParser cp, java.net.URL url, boolean bRespectExpires)
          Picks out the Cookies in a CookieJar that are eligible to be sent with a request to a particular URL.
 CookieJar CookieJar.getVersionCookies(java.lang.String ver)
          Gets all Cookies having given version.
 CookieJar RFC2965CookieParser.parseCookies(Header header, java.net.URL url)
           
 CookieJar CookieParser.parseCookies(Header h, java.net.URL url)
          Converts the headers in an HTTP response into a CookieJar of Cookie objects.
static CookieJar RFC2965CookieParser.parseSetCookieV0(Header responseHeader, java.net.URL url, boolean bStrict)
          Parses headers into Version 1 Cookies.
static CookieJar RFC2965CookieParser.parseSetCookieV1(Header responseHeader, java.net.URL url, boolean bStrict)
          Parses headers into Version 1 Cookies.
 CookieJar Client.setCookies(java.net.URLConnection urlConn, CookieJar cj)
          Sets cookie headers on the given URLConnection, using Cookies in the CookieJar.
static CookieJar RFC2965CookieParser.sortCookiesByPathSpecificity(CookieJar cj)
          Sorts the Cookies in the input CookieJar, with the cookie having most specific path attribute first.
 

Methods in com.sonalb.net.http.cookie with parameters of type CookieJar
 Header RFC2965CookieParser.getCookieHeaders(CookieJar cj)
           
 Header CookieParser.getCookieHeaders(CookieJar cj)
          Converts the Cookies in the CookieJar to a set of headers suitable to be sent along with an HTTP request.
static CookieJar CookieUtils.getCookiesForURL(CookieJar cj, CookieParser cp, java.net.URL url, boolean bRespectExpires)
          Picks out the Cookies in a CookieJar that are eligible to be sent with a request to a particular URL.
 CookieJar Client.setCookies(java.net.URLConnection urlConn, CookieJar cj)
          Sets cookie headers on the given URLConnection, using Cookies in the CookieJar.
static CookieJar RFC2965CookieParser.sortCookiesByPathSpecificity(CookieJar cj)
          Sorts the Cookies in the input CookieJar, with the cookie having most specific path attribute first.