Example usage for org.apache.http.client.methods HttpEntityEnclosingRequestBase subclass-usage

List of usage examples for org.apache.http.client.methods HttpEntityEnclosingRequestBase subclass-usage

Introduction

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

Usage

From source file com.fujitsu.dc.client.http.HttpPropfindMethod.java

/**
 * It is used to created a new object of HttpMkColMethod. This class is the PROPFIND method definition class.
 */
public class HttpPropfindMethod extends HttpEntityEnclosingRequestBase {
    // /** ??. */
    /** Method Name. */

From source file com.fujitsu.dc.client.http.HttpPropPatchMethod.java

/**
 * It is used to created a new object of HttpMkColMethod. This class is the PROPPATCH method definition class.
 */
public class HttpPropPatchMethod extends HttpEntityEnclosingRequestBase {
    // /** ??. */
    /** Method Name. */

From source file io.personium.client.http.HttpPropfindMethod.java

/**
 * It is used to created a new object of HttpMkColMethod. This class is the PROPFIND method definition class.
 */
public class HttpPropfindMethod extends HttpEntityEnclosingRequestBase {
    // /** ??. */
    /** Method Name. */

From source file reconf.infra.http.layer.SimpleHttpRequest.java

public class SimpleHttpRequest extends HttpEntityEnclosingRequestBase {

    private final String httpMethod;
    private int queryParams = -1;

    SimpleHttpRequest(String method, String pathBase, String... pathParam) throws URISyntaxException {

From source file io.personium.client.http.HttpPropPatchMethod.java

/**
 * It is used to created a new object of HttpMkColMethod. This class is the PROPPATCH method definition class.
 */
public class HttpPropPatchMethod extends HttpEntityEnclosingRequestBase {
    // /** ??. */
    /** Method Name. */

From source file org.keycloak.client.admin.cli.httpcomponents.HttpDelete.java

/**
 * @author <a href="mailto:mstrukel@redhat.com">Marko Strukelj</a>
 */
@NotThreadSafe
public class HttpDelete extends HttpEntityEnclosingRequestBase {

From source file org.wisdom.test.http.HttpDeleteWithBody.java

/**
 * HTTP Body for 'DELETE' request.
 */
class HttpDeleteWithBody extends HttpEntityEnclosingRequestBase {

    /**

From source file com.eviware.soapui.impl.wsdl.submit.transports.http.HttpPatch.java

public class HttpPatch extends HttpEntityEnclosingRequestBase {

    public final static String METHOD_NAME = "PATCH";

    public HttpPatch() {
        super();

From source file com.eviware.soapui.impl.wsdl.submit.transports.http.support.methods.HttpDeleteWithBody.java

public class HttpDeleteWithBody extends HttpEntityEnclosingRequestBase {
    public final static String METHOD_NAME = "DELETE";

    public HttpDeleteWithBody() {
        super();
    }

From source file com.azure.webapi.HttpPatch.java

class HttpPatch extends HttpEntityEnclosingRequestBase {

    public static final String METHOD_NAME = "PATCH";

    public HttpPatch(String url) {
        super();