Example usage for org.springframework.http.client AbstractClientHttpRequest subclass-usage

List of usage examples for org.springframework.http.client AbstractClientHttpRequest subclass-usage

Introduction

In this page you can find the example usage for org.springframework.http.client AbstractClientHttpRequest subclass-usage.

Usage

From source file ar.com.aleatoria.ue.rest.AbstractBufferingClientHttpRequest.java

/**
 * Abstract base for {@link ClientHttpRequest} that buffers output in a byte array before sending it over the wire.
 *
 * @author Arjen Poutsma
 * @since 1.0
 */

From source file com.kimboo.giffy.server.rest.AbstractBufferingClientHttpRequest.java

/**
 * Abstract base for {@link ClientHttpRequest} that buffers output in a byte array before sending it over the wire.
 *
 * @author Arjen Poutsma
 * @since 1.0
 */

From source file grails.plugin.cloudfoundry.GrailsHttpRequest.java

/**
 * Based on package-default org.springframework.http.client.SimpleClientHttpRequest.
 *
 * @author Burt Beckwith
 */
public class GrailsHttpRequest extends AbstractClientHttpRequest {

From source file com.nimble.http.client.GzipClientHttpRequest.java

public class GzipClientHttpRequest extends AbstractClientHttpRequest {
    private ByteArrayOutputStream bufferedOutput = new ByteArrayOutputStream();

    public static final String HEADER_ACCEPT_ENCODING = "Accept-Encoding";
    public static final String ENCODING_GZIP = "gzip";

From source file ar.com.aleatoria.ue.rest.SimpleStreamingClientHttpRequest.java

/**
 * {@link ClientHttpRequest} implementation that uses standard J2SE facilities to execute streaming requests. Created
 * via the {@link SimpleClientHttpRequestFactory}.
 * 
 * @author Arjen Poutsma
 * @author Roy Clarkson

From source file com.kimboo.giffy.server.rest.SimpleStreamingClientHttpRequest.java

/**
 * {@link ClientHttpRequest} implementation that uses standard J2SE facilities to execute streaming requests. Created
 * via the {@link SimpleClientHttpRequestFactory}.
 * 
 * @author Arjen Poutsma
 * @author Roy Clarkson

From source file org.greencheek.spring.rest.SSLCachingHttpComponentsClientHttpRequest.java

/**
 * {@link org.springframework.http.client.ClientHttpRequest} implementation that uses
 * Apache HttpComponents HttpClient to execute requests.
 *
 * <p>Created via the {@link SSLCachingHttpComponentsClientHttpRequestFactory}.
 *

From source file org.dthume.spring.http.client.httpcomponents.HttpComponentsClientHttpRequest.java

/**
 * Implementation of
 * {@link org.springframework.http.client.ClientHttpRequest}
 * based upon Apache HttpComponents/client.
 *
 * @author dth