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

Contents

Overview

A property's value can either be a primitive type, or a reference to another indetifiable. The following shows the list primitive types available for property values according to BOM, and the corresponding supported Java type. CollabProperties whose value is not one of the following Java types will cause an Exception when the properties are persisted. Also Lists of the following primitive types are supported; when deserizalizing lists, the values will be added in a java.util.ArrayList instance.
 type PropertyValue is
      string                => java.lang.String
      integer               => java.lang.Integer
      boolean               => java.lang.Boolean
      timestamp             => java.util.Date
      uri                   => java.net.URI
      float                 => java.lang.Float
      double                => java.lang.Double
      long                  => java.lang.Long
      dateTime              => oracle.csi.DateTime
      ref Identifiable      => oracle.csi.CollabId
 

Members

Name Type Description

description

string

Returns the description of the CollabProperty.

name

string

Returns the name of the CollabProperty.

value

anyType

Returns the value of the CollabProperty.

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:collabProperty xsi:type="obh:collabProperty" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obh:description>your_string_0</obh:description>
        <obh:name>your_string_0</obh:name>
        <obh:value>your_anyType_0</obh:value>
</obh:collabProperty>

JSON Example

(show inherited members)

{
    "beeType":"collabProperty",
        "description":"your_{http://www.oracle.com/beehive}description_as_string0",
        "name":"your_{http://www.oracle.com/beehive}name_as_string0",
        "value":"your_{http://www.oracle.com/beehive}value_as_anyType0"
}

XML Schema


<xs:complexType name="collabProperty">
    <xs:sequence>
        <xs:element minOccurs="0" name="description" type="xs:string"/>
        <xs:element minOccurs="0" name="name" type="xs:string"/>
        <xs:element minOccurs="0" name="value" type="xs:anyType"/>
    </xs:sequence>
</xs:complexType>

        

References

The following data represents the references to collabProperty

Referenced By Resources

Not Referenced Directly by Resources

Referenced By Representaions