~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to tools/gsoap/gsoap-linux-2.7/WS/.svn/text-base/enumeration.xsd.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8" ?>
2
 
<!-- 
3
 
(c) 2004 BEA Systems Inc., Computer Associates, Microsoft Corporation, Inc., Sonic Software, and Systinet Corporation. All rights reserved.
4
 
 
5
 
Permission to copy and display the WS-Enumeration (the "Specification", which includes WSDL and schema documents), in any medium without fee or royalty is hereby granted, provided that you include the following on ALL copies of the Specification that you make:
6
 
 
7
 
1.      A link or URL to the Specification at one of the Co-Developers' websites.
8
 
2.      The copyright notice as shown in the Specification.
9
 
 
10
 
BEA Systems, Computer Associates, Microsoft, Sonic Software, and Systinet (collectively, the "Co-Developers") each agree to grant you a license, under royalty-free and otherwise reasonable, non-discriminatory terms and conditions, to their respective essential patent claims that they deem necessary to implement the Specification.
11
 
 
12
 
THE SPECIFICATION IS PROVIDED "AS IS," AND THE CO-DEVELOPERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
13
 
 
14
 
THE CO-DEVELOPERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY USE OR DISTRIBUTION OF THE SPECIFICATIONS.
15
 
 
16
 
The name and trademarks of the Co-Developers may NOT be used in any manner, including advertising or publicity pertaining to the Specifications or their contents without specific, written prior permission. Title to copyright in the Specifications will at all times remain with the Co-Developers.
17
 
No other rights are granted by implication, estoppel or otherwise.
18
 
-->
19
 
<xs:schema
20
 
        targetNamespace="http://schemas.xmlsoap.org/ws/2004/09/enumeration"
21
 
        xmlns:tns="http://schemas.xmlsoap.org/ws/2004/09/enumeration"
22
 
        xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
23
 
        xmlns:xs="http://www.w3.org/2001/XMLSchema" 
24
 
        elementFormDefault="qualified" 
25
 
        blockDefault="#all">
26
 
 
27
 
        <xs:import namespace='http://www.w3.org/XML/1998/namespace' />
28
 
        <xs:import namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"  schemaLocation="WS-Addressing.xsd"/>
29
 
 
30
 
        <!-- Types and global elements -->
31
 
        <xs:complexType name="FilterType" mixed="true">
32
 
                <xs:sequence>
33
 
                        <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
34
 
                </xs:sequence>
35
 
                <xs:attribute name="Dialect" type="xs:anyURI" />
36
 
                <xs:anyAttribute namespace="##other" processContents="lax" />
37
 
        </xs:complexType>
38
 
        
39
 
        <xs:simpleType name="PositiveDurationType">
40
 
                <xs:restriction base="xs:duration">
41
 
                        <xs:minExclusive value="P0Y0M0DT0H0M0S" />
42
 
                </xs:restriction>
43
 
        </xs:simpleType>
44
 
 
45
 
        <xs:simpleType name="NonNegativeDurationType">
46
 
                <xs:restriction base="xs:duration">
47
 
                        <xs:minInclusive value="P0Y0M0DT0H0M0S" />
48
 
                </xs:restriction>
49
 
        </xs:simpleType>
50
 
 
51
 
        <xs:simpleType name="ExpirationType">
52
 
                <xs:union memberTypes="xs:dateTime tns:NonNegativeDurationType" />
53
 
        </xs:simpleType>
54
 
 
55
 
        <xs:complexType name="EnumerationContextType">
56
 
                <xs:complexContent mixed="true">
57
 
                        <xs:restriction base="xs:anyType">
58
 
                                <xs:sequence>
59
 
                                        <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
60
 
                                </xs:sequence>
61
 
                                <xs:anyAttribute namespace="##other" processContents="lax" />
62
 
                        </xs:restriction>
63
 
                </xs:complexContent>
64
 
        </xs:complexType>
65
 
        
66
 
        <xs:complexType name="ItemListType">
67
 
                <xs:sequence maxOccurs="unbounded">
68
 
                        <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
69
 
                </xs:sequence>
70
 
        </xs:complexType>
71
 
 
72
 
        <xs:complexType name="LanguageSpecificStringType">
73
 
                <xs:simpleContent>
74
 
                        <xs:extension base="xs:string">
75
 
                                <xs:attribute ref="xml:lang" />
76
 
                                <xs:anyAttribute namespace="##other" processContents="lax" />
77
 
                        </xs:extension>
78
 
                </xs:simpleContent>
79
 
        </xs:complexType>
80
 
 
81
 
        <!-- Enumerate request -->
82
 
        <xs:element name="Enumerate">
83
 
                <xs:complexType>
84
 
                        <xs:sequence>
85
 
                                <xs:element name="EndTo" type="wsa:EndpointReferenceType" minOccurs="0" />
86
 
                                <xs:element name="Expires" type="tns:ExpirationType" minOccurs="0" />
87
 
                                <xs:element name="Filter" type="tns:FilterType" minOccurs="0" />
88
 
                                <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
89
 
                        </xs:sequence>
90
 
                        <xs:anyAttribute namespace="##other" processContents="lax" />
91
 
                </xs:complexType>
92
 
        </xs:element>
93
 
        
94
 
        <!-- Used for a fault response -->
95
 
        <xs:element name="SupportedDialect" type="xs:anyURI" />
96
 
        
97
 
        <!-- Enumerate response -->
98
 
        <xs:element name="EnumerateResponse">
99
 
                <xs:complexType>
100
 
                        <xs:sequence>
101
 
                                <xs:element name="Expires" type="tns:ExpirationType" minOccurs="0" />
102
 
                                <xs:element name="EnumerationContext" type="tns:EnumerationContextType" />
103
 
                                <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
104
 
                        </xs:sequence>
105
 
                        <xs:anyAttribute namespace="##other" processContents="lax" />
106
 
                </xs:complexType>
107
 
        </xs:element>
108
 
        
109
 
        <!-- Pull request -->
110
 
        <xs:element name="Pull">
111
 
                <xs:complexType>
112
 
                        <xs:sequence>
113
 
                                <xs:element name="EnumerationContext" type="tns:EnumerationContextType" />
114
 
                                <xs:element name="MaxTime" type="tns:PositiveDurationType" minOccurs="0" />
115
 
                                <xs:element name="MaxElements" type="xs:positiveInteger" minOccurs="0" />
116
 
                                <xs:element name="MaxCharacters" type="xs:positiveInteger" minOccurs="0" />
117
 
                                <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
118
 
                        </xs:sequence>
119
 
                        <xs:anyAttribute namespace="##other" processContents="lax" />
120
 
                </xs:complexType>
121
 
        </xs:element>
122
 
        
123
 
        <!-- Pull response -->
124
 
        <xs:element name="PullResponse">
125
 
                <xs:complexType>
126
 
                        <xs:sequence>
127
 
                                <xs:element name="EnumerationContext" type="tns:EnumerationContextType" minOccurs="0" />
128
 
                                <xs:element name="Items" type="tns:ItemListType" minOccurs="0" />
129
 
                                <xs:element name="EndOfSequence" minOccurs="0" />
130
 
                        </xs:sequence>
131
 
                        <xs:anyAttribute namespace="##other" processContents="lax" />
132
 
                </xs:complexType>
133
 
        </xs:element>
134
 
        
135
 
        <!-- Renew request -->
136
 
        <xs:element name="Renew">
137
 
                <xs:complexType>
138
 
                        <xs:sequence>
139
 
                                <xs:element name="EnumerationContext" type="tns:EnumerationContextType" />
140
 
                                <xs:element name="Expires" type="tns:ExpirationType" minOccurs="0" />
141
 
                                <xs:any namespace="##other" processContents="lax" 
142
 
                                        minOccurs="0" maxOccurs="unbounded" />
143
 
                        </xs:sequence>
144
 
                        <xs:anyAttribute namespace="##other" processContents="lax" />
145
 
                </xs:complexType>
146
 
        </xs:element>
147
 
 
148
 
        <!-- Renew response -->
149
 
        <xs:element name="RenewResponse">
150
 
                <xs:complexType>
151
 
                        <xs:sequence>
152
 
                                <xs:element name="Expires" type="tns:ExpirationType" minOccurs="0" />
153
 
                                <xs:element name="EnumerationContext" type="tns:EnumerationContextType" minOccurs="0" />
154
 
                                <xs:any namespace="##other" processContents="lax" 
155
 
                                        minOccurs="0" maxOccurs="unbounded" />
156
 
                        </xs:sequence>
157
 
                        <xs:anyAttribute namespace="##other" processContents="lax" />
158
 
                </xs:complexType>
159
 
        </xs:element>
160
 
 
161
 
        <!-- GetStatus request -->
162
 
        <xs:element name="GetStatus">
163
 
                <xs:complexType>
164
 
                        <xs:sequence>
165
 
                                <xs:element name="EnumerationContext" type="tns:EnumerationContextType" />
166
 
                                <xs:any namespace="##other" processContents="lax" 
167
 
                                        minOccurs="0" maxOccurs="unbounded" />
168
 
                        </xs:sequence>
169
 
                        <xs:anyAttribute namespace="##other" processContents="lax" />
170
 
                </xs:complexType>
171
 
        </xs:element>
172
 
 
173
 
        <!-- GetStatus response -->
174
 
        <xs:element name="GetStatusResponse">
175
 
                <xs:complexType>
176
 
                        <xs:sequence>
177
 
                                <xs:element name="Expires" type="tns:ExpirationType" minOccurs="0" />
178
 
                                <xs:any namespace="##other" processContents="lax" 
179
 
                                        minOccurs="0" maxOccurs="unbounded" />
180
 
                        </xs:sequence>
181
 
                        <xs:anyAttribute namespace="##other" processContents="lax" />
182
 
                </xs:complexType>
183
 
        </xs:element>
184
 
 
185
 
        <!-- Release request -->
186
 
        <xs:element name="Release">
187
 
                <xs:complexType>
188
 
                        <xs:sequence>
189
 
                                <xs:element name="EnumerationContext" type="tns:EnumerationContextType" />
190
 
                        </xs:sequence>
191
 
                        <xs:anyAttribute namespace="##other" processContents="lax" />
192
 
                </xs:complexType>
193
 
        </xs:element>
194
 
        
195
 
        <!-- Release response has an empty body -->
196
 
        
197
 
        <!-- EnumerationEnd message -->
198
 
        <xs:element name="EnumerationEnd">
199
 
                <xs:complexType>
200
 
                <xs:sequence>
201
 
                        <xs:element name="EnumerationContext" type="tns:EnumerationContextType" />
202
 
                        <xs:element name="Code" type="tns:OpenEnumerationEndCodeType" />
203
 
                        <xs:element name="Reason" type="tns:LanguageSpecificStringType" minOccurs="0" maxOccurs="unbounded" />
204
 
                        <xs:any namespace="##other" processContents="lax" 
205
 
                        minOccurs="0" maxOccurs="unbounded" />
206
 
                </xs:sequence>
207
 
                <xs:anyAttribute namespace="##other" processContents="lax" />
208
 
                </xs:complexType>
209
 
        </xs:element>
210
 
 
211
 
        <xs:simpleType name="EnumerationEndCodeType">
212
 
                <xs:restriction base="xs:anyURI">
213
 
                <xs:enumeration value="http://schemas.xmlsoap.org/ws/2004/09/enumeration/SourceShuttingDown" />
214
 
                <xs:enumeration value="http://schemas.xmlsoap.org/ws/2004/09/enumeration/SourceCancelling" />
215
 
                </xs:restriction>
216
 
        </xs:simpleType>
217
 
 
218
 
        <xs:simpleType name="OpenEnumerationEndCodeType">
219
 
                <xs:union memberTypes="tns:EnumerationEndCodeType xs:anyURI" />
220
 
        </xs:simpleType>
221
 
</xs:schema>