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

Contents

Overview

An event which indicates that one or more direct children of a container has changed. ContainedChangeEvents will be received for children of a container to which the application created a container subscription.

Members

Name Type Description

childChanges

objectChangeEvent[]

Gets the complete set of children which have changed. If this list is empty it is indication that the framework cannot determine which children have changed. In this case, it is expected that an application should refresh the container to determine the correct state of its children.

collabId

beeId

Hierarchy

Inherits From

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:containedChangeEvent xsi:type="obh:containedChangeEvent" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obh:childChanges>your_objectChangeEvent_0</obh:childChanges>
        <obh:childChanges>your_objectChangeEvent_1</obh:childChanges>
        <obh:childChanges>your_objectChangeEvent_2</obh:childChanges>
        <obh:collabId>your_beeId_0</obh:collabId>
</obh:containedChangeEvent>

JSON Example

(show inherited members)

{
    "beeType":"containedChangeEvent",
        "childChanges":[
            { your_{http://www.oracle.com/beehive}childChanges_as_objectChangeEvent0 },
            { your_{http://www.oracle.com/beehive}childChanges_as_objectChangeEvent1 },
            { your_{http://www.oracle.com/beehive}childChanges_as_objectChangeEvent2 }
        ],
        "collabId":{ your_{http://www.oracle.com/beehive}collabId_as_beeId0 }
}

XML Schema


<xs:complexType name="containedChangeEvent">
    <xs:complexContent>
        <xs:extension base="tns:changeEvent">
            <xs:sequence>
                <xs:element maxOccurs="unbounded" minOccurs="0"
                    name="childChanges" type="tns:objectChangeEvent"/>
                <xs:element minOccurs="0" name="collabId" type="tns:beeId"/>
            </xs:sequence>
        </xs:extension>
    </xs:complexContent>
</xs:complexType>

        

References

The following data represents the references to containedChangeEvent

Referenced By Resources

Not Referenced Directly by Resources

Referenced By Representaions

Not Referenced Directly by Representations