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 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">
        <description>your_string_0</description>
        <name>your_string_0</name>
        <value>your_anyType_0</value>
</obh:collabProperty>

Referenced By Representaions