Oracle Beehive
  Oracle® Beehive RESTful Web Services API Reference
  Release 2 (2.0.1.7)
  E16658-04

Contents

Overview

Represents a snapshot of a DateTimeRecurrenceSet which is an immutable object. Use method createDateTimeRecurrenceSet from to create DateTimeRecurrenceSet.

A DateTimeRecurrenceSet is a set of DateTime defined by the union of the IncludeDateTimes and the DateTime yielded by the InclusionRule starting at StartTime minus the ExcludeDateTimes.

Members

Name Type Description

excludeDateTimes

dateTime[]

Return an unmodifiable view of the ExcludeDateTimes attribute. This attribute is similar to the EXDATE property in iCalendar.

includeDateTimes

dateTime[]

Return an unmodifiable view of the IncludeDateTimes attribute. This attribute is simular the the RDATE attribute in RFC2445.

inclusionRule

string

A date time recurrence rule is a structured string as defined by iCalendar RFC 2445.

startDateTime

dateTime

Return the StartDateTime attribute. This attribute is the lower bound the dates yielded by the inclusion rule.

Hierarchy

Examples

Below are examples in JSON and XML formats. All examples are shown with all inherited members. Quoting when required is part of the examples, but you must obviously populate with your own data.

XML Example

(show inherited members)

<obh:dateTimeRecurrenceSet xsi:type="obh:dateTimeRecurrenceSet" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obh:excludeDateTimes>your_dateTime_0</obh:excludeDateTimes>
        <obh:excludeDateTimes>your_dateTime_1</obh:excludeDateTimes>
        <obh:excludeDateTimes>your_dateTime_2</obh:excludeDateTimes>
        <obh:includeDateTimes>your_dateTime_0</obh:includeDateTimes>
        <obh:includeDateTimes>your_dateTime_1</obh:includeDateTimes>
        <obh:includeDateTimes>your_dateTime_2</obh:includeDateTimes>
        <obh:inclusionRule>your_string_0</obh:inclusionRule>
        <obh:startDateTime>your_dateTime_0</obh:startDateTime>
</obh:dateTimeRecurrenceSet>

JSON Example

(show inherited members)

{
    "beeType":"dateTimeRecurrenceSet",
        "excludeDateTimes":[
            { your_{http://www.oracle.com/beehive}excludeDateTimes_as_dateTime0 },
            { your_{http://www.oracle.com/beehive}excludeDateTimes_as_dateTime1 },
            { your_{http://www.oracle.com/beehive}excludeDateTimes_as_dateTime2 }
        ],
        "includeDateTimes":[
            { your_{http://www.oracle.com/beehive}includeDateTimes_as_dateTime0 },
            { your_{http://www.oracle.com/beehive}includeDateTimes_as_dateTime1 },
            { your_{http://www.oracle.com/beehive}includeDateTimes_as_dateTime2 }
        ],
        "inclusionRule":"your_{http://www.oracle.com/beehive}inclusionRule_as_string0",
        "startDateTime":{ your_{http://www.oracle.com/beehive}startDateTime_as_dateTime0 }
}

XML Schema


<xs:complexType name="dateTimeRecurrenceSet">
    <xs:sequence>
        <xs:element maxOccurs="unbounded" minOccurs="0"
            name="excludeDateTimes" type="tns:dateTime"/>
        <xs:element maxOccurs="unbounded" minOccurs="0"
            name="includeDateTimes" type="tns:dateTime"/>
        <xs:element minOccurs="0" name="inclusionRule" type="xs:string"/>
        <xs:element minOccurs="0" name="startDateTime" type="tns:dateTime"/>
    </xs:sequence>
</xs:complexType>

        

References

The following data represents the references to dateTimeRecurrenceSet

Referenced By Resources

Not Referenced Directly by Resources

Referenced By Representaions