Uses of Class
org.apache.commons.httpclient.Header

Packages that use Header
org.apache.commons.httpclient Classes and interfaces supporting the client side of the HTTP protocol. 
org.apache.commons.httpclient.cookie Provides cookie handling in conjunction with Cookie
 

Uses of Header in org.apache.commons.httpclient
 

Fields in org.apache.commons.httpclient declared as Header
protected static Header HttpMethodBase.USER_AGENT
          The User-Agent header sent on every request.
 

Methods in org.apache.commons.httpclient that return Header
 Header HttpMethodBase.getRequestHeader(java.lang.String headerName)
          Get the request header associated with the given name.
 Header[] HttpMethodBase.getRequestHeaders()
          Provides access to the request headers.
 Header[] HttpMethodBase.getResponseHeaders()
          Provide access to the response headers
 Header HttpMethodBase.getResponseHeader(java.lang.String headerName)
          Get the response header associated with the given name.
 Header[] HttpMethodBase.getResponseFooters()
          Return an array of response footers.
 Header HttpMethodBase.getResponseFooter(java.lang.String footerName)
          Get the response footer associated with the given name.
 Header HttpMethod.getRequestHeader(java.lang.String headerName)
          Get the request header associated with the given name.
 Header[] HttpMethod.getRequestHeaders()
          Return an array of my request headers.
 Header[] HttpMethod.getResponseHeaders()
          Return an array of my response headers.
 Header HttpMethod.getResponseHeader(java.lang.String headerName)
          Return the specified response header.
 Header[] HttpMethod.getResponseFooters()
          Return an array of my response footers
 Header HttpMethod.getResponseFooter(java.lang.String footerName)
          Return the specified response footer.
static Header Cookie.createCookieHeader(java.lang.String domain, java.lang.String path, Cookie[] cookies)
          Deprecated. use CookieSpec interface
static Header Cookie.createCookieHeader(java.lang.String domain, java.lang.String path, boolean secure, Cookie[] cookies)
          Deprecated. use CookieSpec interface
static Header Cookie.createCookieHeader(java.lang.String domain, int port, java.lang.String path, boolean secure, Cookie[] cookies)
          Deprecated. use CookieSpec interface
static Header Cookie.createCookieHeader(java.lang.String domain, int port, java.lang.String path, boolean secure, java.util.Date now, Cookie[] cookies)
          Deprecated. use CookieSpec interface
 

Methods in org.apache.commons.httpclient with parameters of type Header
 void HttpMethodBase.addRequestHeader(Header header)
          Add the specified request header.
 void HttpMethodBase.addResponseFooter(Header footer)
          adds a response footer to the internal list
 void HttpMethodBase.setRequestHeader(Header header)
          Set the specified request header, overwriting any previous value.
protected static java.lang.String HttpMethodBase.getContentCharSet(Header contentheader)
           
 void HttpMethod.setRequestHeader(Header header)
          Set the specified request header, overwriting any previous value.
 void HttpMethod.addRequestHeader(Header header)
          Adds the specified request header, NOT overwriting any previous value.
 void HttpMethod.addResponseFooter(Header footer)
          Use this method internally to add footers.
static Cookie[] Cookie.parse(java.lang.String domain, int port, java.lang.String path, Header setCookie)
          Parses the Set-Cookie Header into an array of Cookies, assuming that the cookies were recieved on an insecure channel.
static Cookie[] Cookie.parse(java.lang.String domain, java.lang.String path, Header setCookie)
          Deprecated. use CookieSpec interface
static Cookie[] Cookie.parse(java.lang.String domain, java.lang.String path, boolean secure, Header setCookie)
          Deprecated. use CookieSpec interface
static Cookie[] Cookie.parse(java.lang.String domain, int port, java.lang.String path, boolean secure, Header setCookie)
          Deprecated. use CookieSpec interface
 

Uses of Header in org.apache.commons.httpclient.cookie
 

Methods in org.apache.commons.httpclient.cookie that return Header
 Header RFC2109Spec.formatCookieHeader(Cookie cookie)
          Create a RFC 2109 compliant "Cookie" Header containing the Cookie.
 Header CookieSpecBase.formatCookieHeader(Cookie[] cookies)
          Create a "Cookie" Header containing all Cookies in cookies.
 Header CookieSpecBase.formatCookieHeader(Cookie cookie)
          Create a "Cookie" Header containing the Cookie.
 Header CookieSpec.formatCookieHeader(Cookie[] cookies)
          Create a "Cookie" Header containing all Cookies in cookies.
 Header CookieSpec.formatCookieHeader(Cookie cookie)
          Create a "Cookie" Header containing the Cookie.
 

Methods in org.apache.commons.httpclient.cookie with parameters of type Header
 Cookie[] CookieSpecBase.parse(java.lang.String host, int port, java.lang.String path, boolean secure, Header header)
          Parse the "Set-Cookie" Header into an array of Cookies.
 Cookie[] CookieSpec.parse(java.lang.String host, int port, java.lang.String path, boolean secure, Header header)
          Parse the "Set-Cookie" Header into an array of Cookies.
 



Copyright © 2001-2003 Apache Software Foundation. All Rights Reserved.