forked from camunda/camunda-bpm-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBankAccountService.xsd
executable file
·86 lines (79 loc) · 2.43 KB
/
BankAccountService.xsd
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://start.soap.spring.example.bpm.camunda.com/v1"
xmlns:tns="http://start.soap.spring.example.bpm.camunda.com/v1"
elementFormDefault="qualified">
<annotation>
<documentation>Example of web service.</documentation>
</annotation>
<element name="setAccountNameRequest">
<complexType>
<sequence>
<element name="accountNumber" type="string">
<annotation>
<documentation>Account number.</documentation>
</annotation>
</element>
<element name="accountName" type="string">
<annotation>
<documentation>Account name to set.</documentation>
</annotation>
</element>
</sequence>
</complexType>
</element>
<element name="setAccountNameResponse">
<complexType>
<sequence>
<element name="status" type="tns:statusType">
<annotation>
<documentation>Response status.</documentation>
</annotation>
</element>
</sequence>
</complexType>
</element>
<element name="invalidValueException">
<annotation>
<documentation>Invalid value.</documentation>
</annotation>
<complexType>
<sequence>
<element name="name" type="string">
<annotation>
<documentation>Name of offending field.</documentation>
</annotation>
</element>
<element name="message" type="string" />
</sequence>
</complexType>
</element>
<element name="bankRequestHeader">
<complexType>
<sequence>
<element name="secret" type="string">
<annotation>
<documentation>Secret token.</documentation>
</annotation>
</element>
</sequence>
</complexType>
</element>
<simpleType name="statusType">
<annotation>
<documentation>Request status.</documentation>
</annotation>
<restriction base="string">
<enumeration value="success">
<annotation>
<documentation>Name was successfully set.</documentation>
</annotation>
</enumeration>
<enumeration value="failure">
<annotation>
<documentation>Failed to set name.</documentation>
</annotation>
</enumeration>
</restriction>
</simpleType>
</schema>