org.bedework.util.http.HttpMkcalendar Maven / Gradle / Ivy
/* ********************************************************************
Appropriate copyright notice
*/
package org.bedework.util.http;
import org.apache.http.client.methods.HttpRequestBase;
import java.net.URI;
/**
* User: mike Date: 11/8/17 Time: 13:54
*/
public class HttpMkcalendar extends HttpRequestBase {
public static final String METHOD_NAME = "MKCALENDAR";
public HttpMkcalendar() {
}
public HttpMkcalendar(final URI uri) {
this.setURI(uri);
}
public HttpMkcalendar(final String uri) {
this.setURI(URI.create(uri));
}
public String getMethod() {
return METHOD_NAME;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy