Uses of Class
com.sonalb.net.http.Header

Packages that use Header
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 Header in com.sonalb.net.http
 

Methods in com.sonalb.net.http that return Header
static Header HeaderUtils.extractHeaders(java.net.URLConnection uc)
          Extracts the headers from the input URLConnection, and populates them in a Header instance.
 Header Header.getEntriesForKey(java.lang.String s)
          Returns a Header consisting of all HeaderEntries having given key.
 Header Header.getEntriesForValue(java.lang.String s)
          Returns a Header consisting of all HeaderEntries having given value.
 

Methods in com.sonalb.net.http with parameters of type Header
static void HeaderUtils.setHeaders(java.net.URLConnection uc, Header h)
          Converts the Header input, into properties in the URLConnection.
 

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

Methods in com.sonalb.net.http.cookie that return Header
 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.
 

Methods in com.sonalb.net.http.cookie with parameters of type Header
 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.