Example usage for org.apache.http.client.methods RequestBuilder interface-usage

List of usage examples for org.apache.http.client.methods RequestBuilder interface-usage

Introduction

In this page you can find the example usage for org.apache.http.client.methods RequestBuilder interface-usage.

Usage

From source file com.meschbach.psi.util.rest.AbstractEntityRequest.java

/**
 * An <code>AbstractEntityRequest</code> is an abstract base class for requests
 * which allow for an HTTP entity to accompany an HTTP request.
 * 
 * @author "Mark Eschbach" (meschbach@gmail.com)
 * @version 2.5.0

From source file com.meschbach.psi.util.rest.GetRequest.java

/**
 * A <code>GetRequest</code> is a kind of <code>RequestBuilder</code> geared
 * towards issuing an HTTP GET request.
 * 
 * @author "Mark Eschbach" meschbach@gmail.com
 * @since 1.2.0 (PSI 2.3.0)

From source file fr.ippon.wip.http.request.GetRequestBuilder.java

/**
 * Container class for all data describing a GET HTTP request from a remote host.
 * 
 * @author Yohan Legat
 *
 */

From source file fr.ippon.wip.http.request.PostRequestBuilder.java

/**
 * Container class for all data describing a POST HTTP request from a remote host.
 * 
 * @author Yohan Legat
 */
public class PostRequestBuilder extends AbstractRequestBuilder implements RequestBuilder, Serializable {

From source file com.hyphenated.pokerplayerclient.network.RestRequestBuilder.java

/**
 * Generic Abstract Class that wraps HTTP Post Rest Network requests.
 *
 * Going to over-engineer the networking code a bit.
 *
 * Created by jacobhyphenated on 6/5/13.

From source file fr.ippon.wip.http.request.MultipartRequestBuilder.java

/**
 * Container class for all data describing a POST multipart-content request from
 * a remote host.
 * 
 * @author Yohan Legat
 * 

From source file com.github.yongchristophertang.engine.web.request.HttpRequestBuilders.java

/**
 * Default builder for {@link HttpRequestBase} required as input to
 * perform request in {@link WebTemplate}.
 *
 * Application tests will typically access this builder through the static
 * factory methods in {@link TestRequestBuilders}.

From source file io.kahu.hawaii.util.call.http.HttpRequestBuilder.java

@NotThreadSafe
public class HttpRequestBuilder<T> implements RequestBuilder<T> {
    private static final HttpClientBuilder HTTP_CLIENT_BUILDER = HttpClientBuilder.create()
            .disableContentCompression();

    private static final String JSON = "application/json";