- Timestamp:
- Sep 2, 2009 6:00:10 PM (15 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master, version-2.00, version-3.01, version-3.02
- Children:
- 66861a2
- Parents:
- f9ef40b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wsdl/topdl.xsd
rf9ef40b r9beaf7c 2 2 <xsd:schema targetNamespace="http://www.isi.edu/faber/topdl" 3 3 xmlns:tns="http://www.isi.edu/faber/topdl" 4 xmlns:fns="http://www.isi.edu/faber/fedd_types" 4 5 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 5 6 xmlns="http://www.w3.org/2000/10/XMLSchema"> … … 71 72 <xsd:element name="latency" type="tns:latencyType" 72 73 minOccurs="0" maxOccurs="1"/> 74 <xsd:element name="attribute" type="tns:attributeType" 75 minOccurs="0" maxOccurs="unbounded"/> 73 76 </xsd:sequence> 74 77 </xsd:complexType> … … 197 200 </xsd:complexType> 198 201 202 <xsd:complexType name="testbedType"> 203 <xsd:annotation> 204 <xsd:documentation> 205 A testbed is an abstract resource collection. 206 </xsd:documentation> 207 </xsd:annotation> 208 <xsd:sequence> 209 <xsd:element name="uri" type="xsd:string"/> 210 <xsd:element name="type" type="xsd:string"/> 211 <xsd:element name="interface" type="tns:interfaceType" 212 minOccurs="0" maxOccurs="unbounded"/> 213 <xsd:element name="attribute" type="tns:attributeType" 214 minOccurs="0" maxOccurs="unbounded"/> 215 </xsd:sequence> 216 </xsd:complexType> 217 218 <xsd:complexType name="segmentType"> 219 <xsd:annotation> 220 <xsd:documentation> 221 A collection of resources instantiated on a testbed 222 </xsd:documentation> 223 </xsd:annotation> 224 <xsd:sequence> 225 <xsd:element name="id" type="fns:IDType"/> 226 <xsd:element name="type" type="xsd:string"/> 227 <xsd:element name="uri" type="xsd:string"/> 228 <xsd:element name="interface" type="tns:interfaceType" 229 minOccurs="0" maxOccurs="unbounded"/> 230 <xsd:element name="attribute" type="tns:attributeType" 231 minOccurs="0" maxOccurs="unbounded"/> 232 </xsd:sequence> 233 </xsd:complexType> 234 235 199 236 <xsd:complexType name="otherType"> 200 237 <xsd:annotation> … … 219 256 <xsd:choice> 220 257 <xsd:element name="computer" type="tns:computerType"/> 258 <xsd:element name="testbed" type="tns:testbedType"/> 259 <xsd:element name="segment" type="tns:segmentType"/> 221 260 <xsd:element name="other" type="tns:otherType"/> 222 261 </xsd:choice>
Note: See TracChangeset
for help on using the changeset viewer.