Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

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

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

Methods in com.sonalb.net.http.cookie that return CookieJar
 CookieJar RFC2965CookieParser.parseCookies(com.sonalb.net.http.Header header, java.net.URL url)
           
static CookieJar RFC2965CookieParser.sortCookiesByPathSpecificity(CookieJar cj)
          Sorts the Cookies in the input CookieJar, with the cookie having most specific path attribute first.
static CookieJar RFC2965CookieParser.parseSetCookieV1(com.sonalb.net.http.Header responseHeader, java.net.URL url, boolean bStrict)
          Parses headers into Version 1 Cookies.
static CookieJar RFC2965CookieParser.parseSetCookieV0(com.sonalb.net.http.Header responseHeader, java.net.URL url, boolean bStrict)
          Parses headers into Version 1 Cookies.
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 CookieParser.parseCookies(com.sonalb.net.http.Header h, java.net.URL url)
          Converts the headers in an HTTP response into a CookieJar of Cookie objects.
 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 CookieJar.getVersionCookies(java.lang.String ver)
          Gets all Cookies having given version.
 CookieJar Client.getCookies(java.net.URLConnection urlConn)
          Processes cookie headers from the given URLConnection.
protected  CookieJar Client.getCookies(java.net.URLConnection urlConn, java.net.URL url)
           
protected  CookieJar Client.getCookies(com.sonalb.net.http.Header header, java.net.URL url)
           
 CookieJar Client.setCookies(java.net.URLConnection urlConn, CookieJar cj)
          Sets cookie headers on the given URLConnection, using Cookies in the CookieJar.
 

Methods in com.sonalb.net.http.cookie with parameters of type CookieJar
 com.sonalb.net.http.Header RFC2965CookieParser.getCookieHeaders(CookieJar cj)
           
static CookieJar RFC2965CookieParser.sortCookiesByPathSpecificity(CookieJar cj)
          Sorts the Cookies in the input CookieJar, with the cookie having most specific path attribute first.
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.
 com.sonalb.net.http.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.
 CookieJar Client.setCookies(java.net.URLConnection urlConn, CookieJar cj)
          Sets cookie headers on the given URLConnection, using Cookies in the CookieJar.