|
||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of NameValuePair in org.apache.commons.httpclient |
Subclasses of NameValuePair in org.apache.commons.httpclient | |
class |
Cookie
HTTP "magic-cookie" represents a piece of state information that the HTTP agent and the target server can exchange to maintain a session. |
class |
Header
An HTTP header. |
class |
HeaderElement
One element of an HTTP header's value. |
Methods in org.apache.commons.httpclient that return NameValuePair | |
NameValuePair[] |
HeaderElement.getParameters()
Get parameters, if any. |
NameValuePair |
HeaderElement.getParameterByName(java.lang.String name)
Returns parameter with the given name, if found. |
Methods in org.apache.commons.httpclient with parameters of type NameValuePair | |
protected void |
HeaderElement.setParameters(NameValuePair[] pairs)
|
void |
HttpMethod.setQueryString(NameValuePair[] params)
Sets the query string of this HTTP method. |
void |
HttpMethodBase.setQueryString(NameValuePair[] params)
Sets the query string of this HTTP method. |
Constructors in org.apache.commons.httpclient with parameters of type NameValuePair | |
HeaderElement.HeaderElement(java.lang.String name,
java.lang.String value,
NameValuePair[] parameters)
Constructor with name, value and parameters. |
Uses of NameValuePair in org.apache.commons.httpclient.cookie |
Methods in org.apache.commons.httpclient.cookie with parameters of type NameValuePair | |
void |
CookieSpec.parseAttribute(NameValuePair attribute,
Cookie cookie)
Parse the cookie attribute and update the corresponsing Cookie properties. |
void |
CookieSpecBase.parseAttribute(NameValuePair attribute,
Cookie cookie)
Parse the cookie attribute and update the corresponsing Cookie
properties. |
void |
NetscapeDraftSpec.parseAttribute(NameValuePair attribute,
Cookie cookie)
Parse the cookie attribute and update the corresponsing Cookie
properties as defined by the Netscape draft specification |
void |
RFC2109Spec.parseAttribute(NameValuePair attribute,
Cookie cookie)
Parse RFC 2109 specific cookie attribute and update the corresponsing Cookie properties. |
Uses of NameValuePair in org.apache.commons.httpclient.methods |
Methods in org.apache.commons.httpclient.methods that return NameValuePair | |
NameValuePair |
PostMethod.getParameter(java.lang.String paramName)
Gets the parameter of the specified name. |
NameValuePair[] |
PostMethod.getParameters()
Gets the parameters currently added to the PostMethod. |
Methods in org.apache.commons.httpclient.methods with parameters of type NameValuePair | |
void |
PostMethod.addParameter(NameValuePair param)
Adds a new parameter to be used in the POST request body. |
void |
PostMethod.addParameters(NameValuePair[] parameters)
Adds an array of parameters to be used in the POST request body. |
void |
PostMethod.setRequestBody(NameValuePair[] parametersBody)
Sets an array of parameters to be used in the POST request body |
Uses of NameValuePair in org.apache.commons.httpclient.util |
Methods in org.apache.commons.httpclient.util with parameters of type NameValuePair | |
static java.lang.String |
EncodingUtil.formUrlEncode(NameValuePair[] pairs,
java.lang.String charset)
Form-urlencoding routine. |
|
||||||||
PREV NEXT | FRAMES NO FRAMES |