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.ltasks.GZipPostMethod.java

public class GZipPostMethod extends PostMethod {

    private boolean mIsGzip;

    public GZipPostMethod(String uri, boolean aIsGzip) {
        super(uri);

From source file org.apache.slide.webdav.event.NotifyMethod.java

/**
 * @version $Revision: 1.2 $
 */
public class NotifyMethod extends PostMethod {
    public NotifyMethod(String s) throws IllegalArgumentException, IllegalStateException {
        super(s);

From source file flex.messaging.services.http.httpclient.FlexPostMethod.java

/**
 *
 * Simple wrapper around PostMethod that exposes one method for ProxyServlet.
 */
public class FlexPostMethod extends PostMethod {
    public FlexPostMethod(String str) {

From source file org.zaproxy.zap.network.ZapPostMethod.java

/**
 * An HTTP POST method implementation that ignores malformed HTTP response header lines.
 * 
 * @see PostMethod
 */
public class ZapPostMethod extends PostMethod {

From source file org.netbeans.cubeon.bugzilla.api.post.method.BaseBugzillaPostMethod.java

/**
 * Base class for all Bugzilla POST methods.
 *
 * @author radoslaw.holewa
 */
public abstract class BaseBugzillaPostMethod<T> extends PostMethod {

From source file org.archive.httpclient.HttpRecorderPostMethod.java

/**
 * Override of PostMethod that marks the passed HttpRecorder w/ the transition
 * from HTTP head to body and that forces a close on the responseConnection.
 *
 * This is a copy of {@link HttpRecorderGetMethod}.  Only difference is the
 * parent subclass.

From source file smartrics.rest.fitnesse.fixture.support.http.PostMethod.java

/**
 * Post method, enhanced with support of query parameters.
 * 
 * @author smartrics
 * 
 */

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

/**
 * Extended PostMethod that supports limiting of response size and detailed
 * timestamps
 * 
 * @author Ole.Matzura
 */

From source file org.smartfrog.projects.alpine.transport.http.ProgressingPostMethod.java

/**
 * created 23-Mar-2006 17:36:20
 */

public class ProgressingPostMethod extends PostMethod {

From source file com.cyberway.issue.httpclient.HttpRecorderPostMethod.java

/**
 * Override of PostMethod that marks the passed HttpRecorder w/ the transition
 * from HTTP head to body and that forces a close on the responseConnection.
 *
 * This is a copy of {@link HttpRecorderGetMethod}.  Only difference is the
 * parent subclass.