Line 1... |
Line 1... |
1 |
<?xml version='1.0' encoding='UTF-8'?><section>
|
1 |
<?xml version='1.0' encoding='UTF-8'?><section>
|
2 |
<title>ReturnCode type</title>
|
2 |
<title>ReturnCode type</title>
|
3 |
<para>The ReturnCode type is used as the generic answer type for most of the &brs; operations.</para>
|
3 |
<para>The ReturnCode type is used as the generic answer type for most of the &brs; operations.</para>
|
4 |
<para>The defining Java class is
|
4 |
<para>The defining Java class is
|
5 |
<ulink url="javadoc/net/brutex/xservices/types/ReturnCode.html">
|
5 |
<ulink url="&javadoc-base;javadoc/net/brutex/xservices/types/ReturnCode.html">
|
6 |
<classname>net.brutex.xservices.types.ReturnCode</classname></ulink>.</para>
|
6 |
<classname>net.brutex.xservices.types.ReturnCode</classname></ulink>.</para>
|
7 |
<section>
|
7 |
&schemadefinition;
|
8 |
<title>Schema description</title>
|
- |
|
9 |
<programlisting language="xml"><![CDATA[
|
8 |
<programlisting language="xml"><![CDATA[
|
10 |
<xs:complexType name="ReturnCodeType">
|
9 |
<xs:complexType name="ReturnCodeType">
|
11 |
<xs:sequence>
|
10 |
<xs:sequence>
|
12 |
<xs:element name="returnCode" type="xs:int"/>
|
11 |
<xs:element name="returnCode" type="xs:int"/>
|
13 |
<xs:element minOccurs="0" name="stdOut" type="xs:string"/>
|
12 |
<xs:element minOccurs="0" name="stdOut" type="xs:string"/>
|
14 |
<xs:element minOccurs="0" name="stdErr" type="xs:string"/>
|
13 |
<xs:element minOccurs="0" name="stdErr" type="xs:string"/>
|
15 |
<xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="]]><link linkend="antproperty">tns:antProperty</link><![CDATA["/>
|
14 |
<xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="]]><link linkend="antproperty">tns:antProperty</link><![CDATA["/>
|
16 |
</xs:sequence>
|
15 |
</xs:sequence>
|
17 |
</xs:complexType>]]>
|
16 |
</xs:complexType>]]>
|
18 |
</programlisting>
|
17 |
</programlisting>
|
19 |
</section>
|
18 |
|
20 |
<section>
|
19 |
&examplexml;
|
21 |
<title>Example XML </title>
|
- |
|
22 |
<programlisting language="xml"><ReturnCode xmlns:ns2="http://ws.xservices.brutex.net">
|
20 |
<programlisting language="xml"><ReturnCode xmlns:ns2="http://ws.xservices.brutex.net">
|
23 |
<returnCode>0</returnCode>
|
21 |
<returnCode>0</returnCode>
|
24 |
<stdOut/>
|
22 |
<stdOut/>
|
25 |
<stdErr/>
|
23 |
<stdErr/>
|
26 |
<propertyList> <lineannotation>See <link linkend="antproperty">tns:antProperty</link> for details about the <propertyList> elements.</lineannotation>
|
24 |
<propertyList> <lineannotation>See <link linkend="antproperty">tns:antProperty</link> for details about the <propertyList> elements.</lineannotation>
|
Line 30... |
Line 28... |
30 |
<propertyList>
|
28 |
<propertyList>
|
31 |
<name>key2</name>
|
29 |
<name>key2</name>
|
32 |
<value>value2</value>
|
30 |
<value>value2</value>
|
33 |
</propertyList>
|
31 |
</propertyList>
|
34 |
</ReturnCode></programlisting>
|
32 |
</ReturnCode></programlisting>
|
35 |
</section>
|
33 |
|
36 |
</section>
|
34 |
</section>
|
37 |
|
35 |
|