-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathcommon.xsd
More file actions
35 lines (32 loc) · 1.41 KB
/
common.xsd
File metadata and controls
35 lines (32 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<!--http://stackoverflow.com/questions/17295588/xmlntns-and-targetnamespace-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://common.javaops.ru/"
targetNamespace="http://common.javaops.ru/">
<xs:element name="webStateException" nillable="true" type="tns:faultInfo"/>
<xs:complexType name="faultInfo">
<xs:sequence>
<xs:element name="type" type="tns:exceptionType" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="exceptionType">
<xs:restriction base="xs:string">
<xs:enumeration value="SYSTEM"/>
<xs:enumeration value="DATA_BASE"/>
<xs:enumeration value="STATE"/>
<xs:enumeration value="AUTHORIZATION"/>
<xs:enumeration value="CONFIGURATION"/>
<xs:enumeration value="ILLEGAL_ARGUMENT"/>
<xs:enumeration value="BPM"/>
<xs:enumeration value="FILE"/>
<xs:enumeration value="REPORTS"/>
<xs:enumeration value="EMAIL"/>
<xs:enumeration value="TEMPLATE"/>
<xs:enumeration value="ONE_C"/>
<xs:enumeration value="ATTACHMENT"/>
<xs:enumeration value="LDAP"/>
<xs:enumeration value="SOAP"/>
<xs:enumeration value="NETWORK"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>