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

Packages that use NameValuePair
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
org.apache.commons.httpclient.methods Classes implementing HttpMethod for the base HTTP methods. 
org.apache.commons.httpclient.util Provides some utility classes for use by HttpClient. 
 

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.getParameterByName(String name)
          Returns parameter with the given name, if found.
 NameValuePair[] HeaderElement.getParameters()
          Get parameters, if any.
 

Methods in org.apache.commons.httpclient with parameters of type NameValuePair
 void HttpMethodBase.setQueryString(NameValuePair[] params)
          Sets the query string of this HTTP method.
 void HttpMethod.setQueryString(NameValuePair[] params)
          Sets the query string of this HTTP method.
 

Constructors in org.apache.commons.httpclient with parameters of type NameValuePair
HeaderElement(String name, String value, NameValuePair[] parameters)
          Constructor with name, value and parameters.
 

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

Subclasses of NameValuePair in org.apache.commons.httpclient.cookie
 class Cookie2
           Cookie class for RFC2965Spec cookie specification.
 

Methods in org.apache.commons.httpclient.cookie with parameters of type NameValuePair
 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 RFC2965Spec.parseAttribute(NameValuePair attribute, Cookie cookie)
          Parse RFC 2965 specific cookie attribute and update the corresponsing Cookie properties.
 void IgnoreCookiesSpec.parseAttribute(NameValuePair attribute, Cookie cookie)
          Does nothing.
 void RFC2109Spec.parseAttribute(NameValuePair attribute, Cookie cookie)
          Parse RFC 2109 specific 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 CookieSpec.parseAttribute(NameValuePair attribute, Cookie cookie)
          Parse the 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(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
 String ParameterFormatter.format(NameValuePair param)
          Produces textual representaion of the attribute/value pair using formatting rules defined in RFC 2616
 void ParameterFormatter.format(StringBuffer buffer, NameValuePair param)
          Produces textual representaion of the attribute/value pair using formatting rules defined in RFC 2616
static String EncodingUtil.formUrlEncode(NameValuePair[] pairs, String charset)
          Form-urlencoding routine.
 



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