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

Contents

Overview

This type represent a character string in its raw form, not converted into unicode/UTF16 java String format. The raw form is stored in a byte sequence and comes with a character set tag.

Members

Name Type Description

bytes

base64Binary

The raw bytes for the string

charset

string

The character set tag for the string

string

string

The string representation of the raw string.

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:rawString xsi:type="obh:rawString" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obh:bytes>your_base64Binary_0</obh:bytes>
        <obh:charset>your_string_0</obh:charset>
        <obh:string>your_string_0</obh:string>
</obh:rawString>

JSON Example

(show inherited members)

{
    "beeType":"rawString",
        "bytes":"your_{http://www.oracle.com/beehive}bytes_as_base64Binary0",
        "charset":"your_{http://www.oracle.com/beehive}charset_as_string0",
        "string":"your_{http://www.oracle.com/beehive}string_as_string0"
}

XML Schema


<xs:complexType final="extension restriction" name="rawString">
    <xs:sequence>
        <xs:element minOccurs="0" name="bytes" type="xs:base64Binary"/>
        <xs:element minOccurs="0" name="charset" type="xs:string"/>
        <xs:element minOccurs="0" name="string" type="xs:string"/>
    </xs:sequence>
</xs:complexType>

        

References

The following data represents the references to rawString

Referenced By Resources

Not Referenced Directly by Resources

Referenced By Representaions