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

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

Introduction

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

Usage

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

/**
 * Special get method that overrides the unfortunate cookie processing in the
 * httpclient 2.0-rc1 library.
 */
public class LZPutMethod extends PutMethod {
    @Override

From source file eu.impact_project.resultsrepository.MkcolMethod.java

/**
 * 
 * An extension for the Apache HttpClient to create Webdav folders.
 *
 */
public class MkcolMethod extends PutMethod {

From source file org.bits4j.methods.BitsPostMethod.java

/**
 * This class is used to support the verb BITS_POST in order to communicate with
 * a Background Intelligent Transfer Service (BITS) Server.
 * <p>
 * The BitsPostMethod method is similar to the HTTP PutMethod in that it allows
 * the body of the request to be sent to the server. However, the verb is

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

public class MockPutMethod extends PutMethod {

    public MockPutMethod() {
        super();
    }

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

/**
 * An HTTP PUT method implementation that ignores malformed HTTP response header lines.
 * 
 * @see PutMethod
 */
public class ZapPutMethod extends PutMethod {

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

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

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

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

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

From source file edu.ucsb.eucalyptus.cloud.ws.PutMethodWithProgress.java

public class PutMethodWithProgress extends PutMethod {
    private File outFile;
    private CallBack callback;

    public PutMethodWithProgress(String path) {
        super(path);

From source file com.eucalyptus.blockstorage.PutMethodWithProgress.java

public class PutMethodWithProgress extends PutMethod {
    private File outFile;
    private CallBack callback;

    public PutMethodWithProgress(String path) {
        super(path);