diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2013-12-20 12:35:28 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2013-12-20 12:35:28 +0100 |
commit | defceef8afef538555c13d33e344a89a828a3d97 (patch) | |
tree | 24b44f970f161d5b139dde501ca0f5d883f9fdea /src/main/resources/wsdl/ur_V2/specific/CustomFault.xsd | |
download | egovutils-defceef8afef538555c13d33e344a89a828a3d97.tar.gz egovutils-defceef8afef538555c13d33e344a89a828a3d97.tar.bz2 egovutils-defceef8afef538555c13d33e344a89a828a3d97.zip |
inital
Diffstat (limited to 'src/main/resources/wsdl/ur_V2/specific/CustomFault.xsd')
-rw-r--r-- | src/main/resources/wsdl/ur_V2/specific/CustomFault.xsd | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/main/resources/wsdl/ur_V2/specific/CustomFault.xsd b/src/main/resources/wsdl/ur_V2/specific/CustomFault.xsd new file mode 100644 index 0000000..c73d667 --- /dev/null +++ b/src/main/resources/wsdl/ur_V2/specific/CustomFault.xsd @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> + + <xs:element name="Message" type="CustomFaultType"/> + + <xs:complexType name="CustomFaultType" final="extension"> + <xs:annotation> + <xs:documentation>CustomFault reporting structure</xs:documentation> + </xs:annotation> + <xs:sequence> + <xs:element name="Code" type="xs:integer"/> + <xs:element name="Reason" type="xs:string" maxOccurs="unbounded"/> + <xs:element name="Help" type="xs:string" minOccurs="0"/> + <xs:element name="Detail" type="xs:anyType" minOccurs="0"/> + </xs:sequence> + </xs:complexType> + +</xs:schema> |