1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/org/gege/caldavsyncadapter/caldav/http/HttpDelete.java Tue Feb 10 18:12:00 2015 +0100 1.3 @@ -0,0 +1,11 @@ 1.4 +package org.gege.caldavsyncadapter.caldav.http; 1.5 + 1.6 +import org.apache.http.client.methods.HttpEntityEnclosingRequestBase; 1.7 +import org.apache.http.client.methods.HttpUriRequest; 1.8 + 1.9 +public class HttpDelete extends HttpEntityEnclosingRequestBase implements HttpUriRequest { 1.10 + @Override 1.11 + public String getMethod() { 1.12 + return "DELETE"; 1.13 + } 1.14 +}