Example usage for org.apache.http.message BasicNameValuePair subclass-usage

List of usage examples for org.apache.http.message BasicNameValuePair subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.message BasicNameValuePair subclass-usage.

Usage

From source file com.mnxfst.testing.server.cfg.PTestNameValuePair.java

/**
 * Replaces the equals and hashCode methods of {@link BasicNameValuePair} since it uses the key and value
 * to compute equals/hashCode. The ptest server configuration requires only ONE entry for each key, thus
 * both methods just work on the key attribute in this implementation
 * @author mnxfst
 * @since 28.03.2012

From source file com.kolich.aws.transport.SortableBasicNameValuePair.java

/**
 * AWS requires that we sort request parameters for signing. By default,
 * {@link BasicNameValuePair} does not implement {@link Comparable} so we
 * extend and do that here.
 */
public final class SortableBasicNameValuePair extends BasicNameValuePair