1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/org/gege/caldavsyncadapter/caldav/http/HttpReport.java Tue Feb 10 18:12:00 2015 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +/** 1.5 + * Copyright (c) 2012-2013, Gerald Garcia 1.6 + * 1.7 + * This file is part of Andoid Caldav Sync Adapter Free. 1.8 + * 1.9 + * Andoid Caldav Sync Adapter Free is free software: you can redistribute 1.10 + * it and/or modify it under the terms of the GNU General Public License 1.11 + * as published by the Free Software Foundation, either version 3 of the 1.12 + * License, or at your option any later version. 1.13 + * 1.14 + * Andoid Caldav Sync Adapter Free is distributed in the hope that 1.15 + * it will be useful, but WITHOUT ANY WARRANTY; without even the implied 1.16 + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1.17 + * GNU General Public License for more details. 1.18 + * 1.19 + * You should have received a copy of the GNU General Public License 1.20 + * along with Andoid Caldav Sync Adapter Free. 1.21 + * If not, see <http://www.gnu.org/licenses/>. 1.22 + * 1.23 + */ 1.24 + 1.25 +package org.gege.caldavsyncadapter.caldav.http; 1.26 + 1.27 +import org.apache.http.client.methods.HttpEntityEnclosingRequestBase; 1.28 +import org.apache.http.client.methods.HttpUriRequest; 1.29 + 1.30 +public class HttpReport extends HttpEntityEnclosingRequestBase implements HttpUriRequest { 1.31 + 1.32 + @Override 1.33 + public String getMethod() { 1.34 + return "REPORT"; 1.35 + } 1.36 + 1.37 +}