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

Contents

Overview

The ServerConfig represents those properties of the server which may be needed by the client.

Members

Name Type Description

debugModeEnabled

boolean

Indicates if debug mode is enabled or not. If enabled, then adding a query parameter of "debug=true" to any URI will cause additional debug information to be included in the response.

maxBatchSize

int

Indicates the maximum number of identifiers that will be processed by any batch operation.

version

string

Version of the server

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)

<obr:serverConfig xsi:type="obr:serverConfig" xmlns:obr="http://www.oracle.com/beehive/rest" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obr:debugModeEnabled>your_boolean_0</obr:debugModeEnabled>
        <obr:maxBatchSize>your_int_0</obr:maxBatchSize>
        <obr:version>your_string_0</obr:version>
</obr:serverConfig>

JSON Example

(show inherited members)

{
    "beeType":"serverConfig",
        "debugModeEnabled":your_{http://www.oracle.com/beehive/rest}debugModeEnabled_as_boolean0,
        "maxBatchSize":your_{http://www.oracle.com/beehive/rest}maxBatchSize_as_int0,
        "version":"your_{http://www.oracle.com/beehive/rest}version_as_string0"
}

XML Schema


<xs:complexType name="serverConfig">
    <xs:sequence>
        <xs:element minOccurs="0" name="debugModeEnabled" type="xs:boolean"/>
        <xs:element minOccurs="0" name="maxBatchSize" type="xs:int"/>
        <xs:element minOccurs="0" name="version" type="xs:string"/>
    </xs:sequence>
</xs:complexType>

        

References

The following data represents the references to serverConfig

Referenced By Resources

Usage Resource Method
Response System Server Configuration

Referenced By Representaions

Not Referenced Directly by Representations