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 com.owncloud.android.lib.common.utils.HttpDeleteWithBody.java

public class HttpDeleteWithBody extends PostMethod {

    public HttpDeleteWithBody(String url) {
        super(url);
    }

From source file org.eclipse.mylyn.internal.commons.net.http.CommonPostMethod3.java

/**
 * Based on {@code org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer}.
 * 
 * @author Steffen Pingel
 */
public class CommonPostMethod3 extends PostMethod implements CommonHttpMethod3 {

From source file davmail.exchange.dav.ExchangePropPatchMethod.java

/**
 * Custom Exchange PROPPATCH method.
 * Supports extended property update with type.
 */
public class ExchangePropPatchMethod extends PostMethod {
    protected static final Logger LOGGER = Logger.getLogger(ExchangePropPatchMethod.class);

From source file davmail.exchange.dav.ExchangeDavMethod.java

/**
 * New stax based implementation to replace DOM based jackrabbit version an support Exchange only extensions.
 */
public abstract class ExchangeDavMethod extends PostMethod {
    protected static final Logger LOGGER = Logger.getLogger(ExchangeDavMethod.class);
    List<MultiStatusResponse> responses;

From source file org.osaf.caldav4j.methods.PostMethod.java

public class PostMethod extends org.apache.commons.httpclient.methods.PostMethod {
    private static final Log log = LogFactory.getLog(PostMethod.class);

    protected Calendar calendar = null;
    private String procID = CalDAVConstants.PROC_ID_DEFAULT;
    private CalendarOutputter calendarOutputter = null;

From source file davmail.exchange.ews.EWSMethod.java

/**
 * EWS SOAP method.
 */
@SuppressWarnings("Since15")
public abstract class EWSMethod extends PostMethod {
    protected static final Logger LOGGER = Logger.getLogger(EWSMethod.class);