Tue, 10 Feb 2015 18:12:00 +0100
Import initial revisions of existing project AndroidCaldavSyncAdapater,
forked from upstream repository at 27e8a0f8495c92e0780d450bdf0c7cec77a03a55.
michael@0 | 1 | package org.gege.caldavsyncadapter.caldav.http; |
michael@0 | 2 | |
michael@0 | 3 | import org.apache.http.client.methods.HttpEntityEnclosingRequestBase; |
michael@0 | 4 | import org.apache.http.client.methods.HttpUriRequest; |
michael@0 | 5 | |
michael@0 | 6 | public class HttpDelete extends HttpEntityEnclosingRequestBase implements HttpUriRequest { |
michael@0 | 7 | @Override |
michael@0 | 8 | public String getMethod() { |
michael@0 | 9 | return "DELETE"; |
michael@0 | 10 | } |
michael@0 | 11 | } |