/* * Funambol is a mobile platform developed by Funambol, Inc. * Copyright (C) 2008 Funambol, Inc. * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License version 3 as published by * the Free Software Foundation with the addition of the following permission * added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED * WORK IN WHICH THE COPYRIGHT IS OWNED BY FUNAMBOL, FUNAMBOL DISCLAIMS THE * WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License * along with this program; if not, see http://www.gnu.org/licenses or write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301 USA. * * You can contact Funambol, Inc. headquarters at 643 Bair Island Road, Suite * 305, Redwood City, CA 94063, USA, or at email address info@funambol.com. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License * version 3, these Appropriate Legal Notices must retain the display of the * "Powered by Funambol" logo. If the display of the logo is not reasonably * feasible for technical reasons, the Appropriate Legal Notices must display * the words "Powered by Funambol". */ package com.funambol.common.pim.vcalendar; /** * This class provides the list of iCalendar and vCalendar common properties */ public class BasicVCalendar { // Fields public static final String BEGIN_VCALENDAR = "BEGIN:VCALENDAR"; public static final String END_VCALENDAR = "END:VCALENDAR"; public static final String BEGIN_VEVENT = "BEGIN:VEVENT"; public static final String END_VEVENT = "END:VEVENT"; public static final String BEGIN_VTODO = "BEGIN:VTODO"; public static final String END_VTODO = "END:VTODO"; // Fields names public static final String SUMMARY = "SUMMARY"; public static final String LOCATION = "LOCATION"; public static final String DTSTART = "DTSTART"; public static final String DTEND = "DTEND"; public static final String DUE = "DUE"; public static final String DURATION = "DURATION"; public static final String DESCRIPTION = "DESCRIPTION"; public static final String CLASS = "CLASS"; public static final String LAST_MODIFIED = "LAST-MODIFIED"; public static final String UID = "UID"; public static final String PRIORITY = "PRIORITY"; public static final String COMPLETED = "COMPLETED"; public static final String STATUS = "STATUS"; public static final String ATTENDEE = "ATTENDEE"; public static final String RRULE = "RRULE"; public static final String VERSION = "VERSION"; public static final String CATEGORIES = "CATEGORIES"; // Fields params public static final String ENCODING = "ENCODING"; public static final String CHARSET = "CHARSET"; public static final String QUOTED_PRINTABLE = "QUOTED-PRINTABLE"; public static final String UTF8 = "UTF-8"; public static final String CLASS_PUBLIC = "PUBLIC"; public static final String CLASS_PRIVATE = "PRIVATE"; public static final String CLASS_CONFIDENTIAL = "CONFIDENTIAL"; public static final String STATUS_COMPLETED = "COMPLETED"; public static final String STATUS_IN_PROCESS = "IN-PROCESS"; public static final String STATUS_NEEDS_ACTION= "NEEDS-ACTION"; public static final String STATUS_CANCELLED = "CANCELLED"; }