Example usage for org.apache.commons.httpclient.methods PostMethod subclass-usage

List of usage examples for org.apache.commons.httpclient.methods PostMethod subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.httpclient.methods PostMethod subclass-usage.

Usage

From source file org.eclipse.osee.framework.core.util.DeleteMethod.java

public class DeleteMethod extends PostMethod {

    public DeleteMethod(String uri) {
        super(uri);
    }

From source file org.obm.caldav.client.httpmethod.PropfindMethod.java

/**
 * Adds a PROPFIND method to Apache Commons HTTPClient library. It's logically
 * just like a POST request, so we can just extend that class and change its
 * protocol verb (getName()).
 */
public class PropfindMethod extends PostMethod {

From source file org.obm.caldav.client.httpmethod.ReportMethod.java

/**
 * Adds a PROPFIND method to Apache Commons HTTPClient library. It's logically
 * just like a POST request, so we can just extend that class and change its
 * protocol verb (getName()).
 */
public class ReportMethod extends PostMethod {

From source file org.openlaszlo.utils.LZPostMethod.java

/**
 * Special post method class that overrides the unfortunate cookie processing in
 * the httpclient 2.0-rc1 library.
 */
public class LZPostMethod extends PostMethod {
    @Override

From source file com.globalsight.UTF8PostMethod.java

public class UTF8PostMethod extends PostMethod {
    public UTF8PostMethod(String url) {
        super(url);
    }

    @Override

From source file velo.adapters.httpClient.PostMethod.java

public class PostMethod extends org.apache.commons.httpclient.methods.PostMethod {

}

From source file cn.vlabs.duckling.common.http.EncodablePostMethod.java

public class EncodablePostMethod extends PostMethod {
    public EncodablePostMethod(String url, String encode) {
        super(url);
        this.encode = encode;
    }

From source file org.jbpm.formbuilder.server.mock.MockPostMethod.java

public class MockPostMethod extends PostMethod {

    public MockPostMethod() {
        super();
    }

From source file org.eclipse.mylyn.internal.bugzilla.core.GzipPostMethod.java

/**
 * Use <code>GzipPostMethod</code> instead of {@link PostMethod} to make Mylyn well-behaved when accessing repositories
 * that can supply gzipped responses.<br />
 * <br>
 * References:
 * <ul>

From source file com.lyndir.lhunath.opal.network.GZIPPostMethod.java

/**
 * <i>GZIPPostMethod - A extended post method for Apache Commons HttpClient that supports GZip compression.</i><br> <br> Using this post
 * method allows GZip compression of the upload stream if supported by the remote server; if and only if enabled using {@link
 * #useGZip(boolean)}.<br> <br>
 *
 * @author lhunath