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

Contents

Overview

DeviceCreator is used to specify the values of various members when creating Device.

Members

Name Type Description

deviceId

string

The identifier of the new Device.

dtd

string

The device information DTD version of the new Device.

man

string

The manufacturer of the new Device.

model

string

The model of the new Device.

swv

string

The software version of the new Device.

updater

deviceUpdater

The updater used to update the Device members not specified in the creator.

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:deviceCreator xsi:type="obh:deviceCreator" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obh:deviceId>your_string_0</obh:deviceId>
        <obh:dtd>your_string_0</obh:dtd>
        <obh:man>your_string_0</obh:man>
        <obh:model>your_string_0</obh:model>
        <obh:swv>your_string_0</obh:swv>
        <obh:updater>your_deviceUpdater_0</obh:updater>
</obh:deviceCreator>

JSON Example

(show inherited members)

{
    "beeType":"deviceCreator",
        "deviceId":"your_{http://www.oracle.com/beehive}deviceId_as_string0",
        "dtd":"your_{http://www.oracle.com/beehive}dtd_as_string0",
        "man":"your_{http://www.oracle.com/beehive}man_as_string0",
        "model":"your_{http://www.oracle.com/beehive}model_as_string0",
        "swv":"your_{http://www.oracle.com/beehive}swv_as_string0",
        "updater":{ your_{http://www.oracle.com/beehive}updater_as_deviceUpdater0 }
}

XML Schema


<xs:complexType name="deviceCreator">
    <xs:complexContent>
        <xs:extension base="tns:entityCreator">
            <xs:sequence>
                <xs:element minOccurs="0" name="deviceId" type="xs:string"/>
                <xs:element minOccurs="0" name="dtd" type="xs:string"/>
                <xs:element minOccurs="0" name="man" type="xs:string"/>
                <xs:element minOccurs="0" name="model" type="xs:string"/>
                <xs:element minOccurs="0" name="swv" type="xs:string"/>
                <xs:element minOccurs="0" name="updater" type="tns:deviceUpdater"/>
            </xs:sequence>
        </xs:extension>
    </xs:complexContent>
</xs:complexType>

        

References

The following data represents the references to deviceCreator

Referenced By Resources

Not Referenced Directly by Resources

Referenced By Representaions

Not Referenced Directly by Representations