public class CalendarEvent
extends java.lang.Object
This class represents the calendar event's attributes. It will be used by Advantage to create a new calendar event(reminder).
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
description |
java.lang.String |
endDate |
java.lang.String |
location |
java.lang.String |
occurrence |
java.lang.String |
reminder |
java.lang.String |
startDate |
java.lang.String |
timezone |
java.lang.String |
title |
| Constructor and Description |
|---|
CalendarEvent(java.lang.String title,
java.lang.String description,
java.lang.String startDate,
java.lang.String occurrence,
java.lang.String endDate,
java.lang.String reminder,
java.lang.String location,
java.lang.String timezone)
Constructs a new instance with the given parameters.
|
public java.lang.String title
public java.lang.String description
public java.lang.String startDate
public java.lang.String occurrence
public java.lang.String endDate
public java.lang.String reminder
public java.lang.String location
public java.lang.String timezone
public CalendarEvent(java.lang.String title,
java.lang.String description,
java.lang.String startDate,
java.lang.String occurrence,
java.lang.String endDate,
java.lang.String reminder,
java.lang.String location,
java.lang.String timezone)
title - Is String for the Calendar title.
The title must be URL encoded.description - A calendar event description.startDate - It is the date from the calendar entry. The date must have the following format [YYYY-MM-DDTHH:MM]
occurrence - Is this entry a recurring entry?
Possible values are:
endDate - It is the date from the calendar entry. The date must have the following format [YYYY-MM-DDTHH:MM]
reminder - The reminder is in seconds before the start date; it is a minus value
e.g. -3600 means one hour before Start date location - Address of location
e.g. Otto-Bauer-Gasse 6/2, 1060 Wientimezone - Timezone is a time format [+/-HH:MM] from GMT (Greenwich Mean Time)
e.g. +02:00 means Timezone GMT+02:00 summertime for the location (Vienna, Berlin, Paris, -)
e.g. +00:00 means the timezone for GMT+00:00 wintertime for London, Lissabon