All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yestech.publish.publisher.webdav.MkColMethod Maven / Gradle / Ivy

package org.yestech.publish.publisher.webdav;

import org.apache.commons.httpclient.HttpMethodBase;

/**
 * @author A.J. Wright
 */
public class MkColMethod extends HttpMethodBase {

    public MkColMethod(String uri) throws IllegalArgumentException, IllegalStateException {
        super(uri);
        setFollowRedirects(true);
    }

    @Override
    public String getName() {
        return "MKCOL";
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy