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

Contents

Overview

Resource WikiPageCreator is used to specify the values of various fields when creating WikiPages.

Members

Name Type Required Description

ignorePendingConflicts

boolean

This member indicates whether an exception is thrown in the initial step of creating a WikiPage when two users simultaneously attempt to create a new WikiPage using the same name.

name

string

The name of the WikiPage

parent

beeId<heterogeneousFolder>

The parent HeterogeneousFolder that contains the WikiPage

updater

wikiPageUpdater

The updater used to update WikiPage fields 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:wikiPageCreator xsi:type="obh:wikiPageCreator" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obh:ignorePendingConflicts>your_boolean_0</obh:ignorePendingConflicts>
        <obh:name>your_string_0</obh:name>
        <obh:parent>your_beeId_0</obh:parent>
        <obh:updater>your_wikiPageUpdater_0</obh:updater>
</obh:wikiPageCreator>

JSON Example

(show inherited members)

{
    "beeType":"wikiPageCreator",
        "ignorePendingConflicts":your_{http://www.oracle.com/beehive}ignorePendingConflicts_as_boolean0,
        "name":"your_{http://www.oracle.com/beehive}name_as_string0",
        "parent":{ your_{http://www.oracle.com/beehive}parent_as_beeId0 },
        "updater":{ your_{http://www.oracle.com/beehive}updater_as_wikiPageUpdater0 }
}

XML Schema


<xs:complexType name="wikiPageCreator">
    <xs:complexContent>
        <xs:extension base="tns:entityCreator">
            <xs:sequence>
                <xs:element minOccurs="0" name="ignorePendingConflicts" type="xs:boolean"/>
                <xs:element name="name" type="xs:string"/>
                <xs:element name="parent" type="tns:beeId"/>
                <xs:element minOccurs="0" name="updater" type="tns:wikiPageUpdater"/>
            </xs:sequence>
        </xs:extension>
    </xs:complexContent>
</xs:complexType>

        

References

The following data represents the references to wikiPageCreator

Referenced By Resources

Usage Resource Method
Request Wiki Page Create

Referenced By Representaions

Not Referenced Directly by Representations