Package ietf.params.xml.ns.icalendar_2
Class ArrayOfFreebusyContainedProperties
- java.lang.Object
-
- ietf.params.xml.ns.icalendar_2.ArrayOfFreebusyContainedProperties
-
public class ArrayOfFreebusyContainedProperties extends Object
From RFC 5545 Section 3.6.4 freebusyc = "BEGIN" ":" "VFREEBUSY" CRLF fbprop "END" ":" "VFREEBUSY" CRLF fbprop = *( ; ; The following are REQUIRED, ; but MUST NOT occur more than once. ; dtstamp / uid / ; ; The following are OPTIONAL, ; but MUST NOT occur more than once. ; contact / dtstart / dtend / organizer / url / ; ; The following are OPTIONAL, ; and MAY occur more than once. ; attendee / comment / freebusy / rstatus / x-prop / iana-prop ; )Java class for ArrayOfFreebusyContainedProperties complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ArrayOfFreebusyContainedProperties"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice maxOccurs="unbounded" minOccurs="0"> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}dtstamp"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}uid"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}contact"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}dtend"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}dtstart"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}organizer"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}url"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}attendee"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}comment"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}freebusy"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}request-status"/> </choice> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<BasePropertyType>dtstampOrUidOrContact
-
Constructor Summary
Constructors Constructor Description ArrayOfFreebusyContainedProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BasePropertyType>getDtstampOrUidOrContact()Gets the value of the dtstampOrUidOrContact property.
-
-
-
Field Detail
-
dtstampOrUidOrContact
protected List<BasePropertyType> dtstampOrUidOrContact
-
-
Method Detail
-
getDtstampOrUidOrContact
public List<BasePropertyType> getDtstampOrUidOrContact()
Gets the value of the dtstampOrUidOrContact property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the dtstampOrUidOrContact property.For example, to add a new item, do as follows:
getDtstampOrUidOrContact().add(newItem);Objects of the following type(s) are allowed in the list
DtstampPropTypeUidPropTypeContactPropTypeDtendPropTypeDtstartPropTypeOrganizerPropTypeUrlPropTypeAttendeePropTypeCommentPropTypeFreebusyPropTypeRequestStatusPropType
-
-