|
||||||||
PREV NEXT | FRAMES NO FRAMES |
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 | |
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 |
Header |
HeaderGroup.getCondensedHeader(java.lang.String name)
Gets a header representing all of the header values with the given name. |
Header[] |
HeaderGroup.getHeaders(java.lang.String name)
Gets all of the headers with the given name. |
Header |
HeaderGroup.getFirstHeader(java.lang.String name)
Gets the first header with the given name. |
Header |
HeaderGroup.getLastHeader(java.lang.String name)
Gets the last header with the given name. |
Header[] |
HeaderGroup.getAllHeaders()
Gets all of the headers contained within this group. |
Header |
HttpMethod.getRequestHeader(java.lang.String headerName)
Gets the request header with the given name. |
Header[] |
HttpMethod.getRequestHeaders()
Returns the current request headers for this HTTP method. |
Header[] |
HttpMethod.getResponseHeaders()
Returns the response headers from the most recent execution of this request. |
Header |
HttpMethod.getResponseHeader(java.lang.String headerName)
Returns the specified response header. |
Header[] |
HttpMethod.getResponseFooters()
Returns the response footers from the most recent execution of this request. |
Header |
HttpMethod.getResponseFooter(java.lang.String footerName)
Return the specified response footer. |
Header |
HttpMethodBase.getRequestHeader(java.lang.String headerName)
Returns the specified request header. |
Header[] |
HttpMethodBase.getRequestHeaders()
Returns an array of the requests headers that the HTTP method currently has |
Header[] |
HttpMethodBase.getResponseHeaders()
Returns an array of the response headers that the HTTP method currently has in the order in which they were read. |
Header |
HttpMethodBase.getResponseHeader(java.lang.String headerName)
Gets the response header associated with the given name. |
Header[] |
HttpMethodBase.getResponseFooters()
Returns an array of the response footers that the HTTP method currently has in the order in which they were read. |
Header |
HttpMethodBase.getResponseFooter(java.lang.String footerName)
Gets the response footer associated with the given name. |
static Header[] |
HttpParser.parseHeaders(java.io.InputStream is)
Parses headers from the given stream. |
Methods in org.apache.commons.httpclient with parameters of type Header | |
static Cookie[] |
Cookie.parse(java.lang.String domain,
int port,
java.lang.String path,
Header setCookie)
Deprecated. use CookieSpec interface |
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 |
void |
HeaderGroup.addHeader(Header header)
Adds the given header to the group. |
void |
HeaderGroup.removeHeader(Header header)
Removes the given header. |
void |
HeaderGroup.setHeaders(Header[] headers)
Sets all of the headers contained within this group overriding any existing headers. |
void |
HttpMethod.setRequestHeader(Header header)
Sets 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)
Add a footer to this method's response. |
void |
HttpMethodBase.addRequestHeader(Header header)
Adds the specified request header, NOT overwriting any previous value. |
void |
HttpMethodBase.addResponseFooter(Header footer)
Use this method internally to add footers. |
void |
HttpMethodBase.setRequestHeader(Header header)
Sets the specified request header, overwriting any previous value. |
protected static java.lang.String |
HttpMethodBase.getContentCharSet(Header contentheader)
Returns the character set from the Content-Type header. |
Uses of Header in org.apache.commons.httpclient.auth |
Methods in org.apache.commons.httpclient.auth with parameters of type Header | |
static AuthScheme |
HttpAuthenticator.selectAuthScheme(Header[] challenges)
Chooses the strongest authentication scheme supported from the array of authentication challenges. |
Uses of Header in org.apache.commons.httpclient.cookie |
Methods in org.apache.commons.httpclient.cookie that return Header | |
Header |
CookieSpec.formatCookieHeader(Cookie[] cookies)
Create a "Cookie" Header for an array of Cookies. |
Header |
CookieSpec.formatCookieHeader(Cookie cookie)
Create a "Cookie" Header for single Cookie. |
Header |
CookieSpecBase.formatCookieHeader(Cookie[] cookies)
Create a "Cookie" Header containing all Cookie s
in cookies. |
Header |
CookieSpecBase.formatCookieHeader(Cookie cookie)
Create a "Cookie" Header containing the Cookie . |
Methods in org.apache.commons.httpclient.cookie with parameters of type Header | |
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. |
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 Cookie s. |
|
||||||||
PREV NEXT | FRAMES NO FRAMES |