Ignore:
Timestamp:
Aug 28, 2008 2:47:15 PM (16 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
Children:
2d5c8b6
Parents:
0d830de
Message:

Experiment creation integrated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/fedd_types.xsd

    r0d830de rb234bb9  
    154154      <xsd:element name="eventServer" type="xsd:string"/>
    155155      <xsd:element name="fedAttr" type="tns:fedAttrType" minOccurs="0"
     156        maxOccurs="unbounded"/>
     157    </xsd:sequence>
     158  </xsd:complexType>
     159
     160  <xsd:complexType name="vtoponodeType">
     161    <xsd:annotation>
     162      <xsd:documentation>
     163        Node in the virtual topology of a federated experiment (emulab legacy)
     164      </xsd:documentation>
     165    </xsd:annotation>
     166    <xsd:sequence>
     167      <xsd:element name="vname" type="xsd:string"/>
     168      <xsd:element name="ips" type="xsd:string"/>
     169    </xsd:sequence>
     170  </xsd:complexType>
     171
     172  <xsd:complexType name="vtoponodesType">
     173    <xsd:annotation>
     174      <xsd:documentation>
     175        Collection of nodes in the virtual topology of a federated experiment (emulab legacy)
     176      </xsd:documentation>
     177    </xsd:annotation>
     178    <xsd:sequence>
     179      <xsd:element name="node" type="tns:vtoponodeType" minOccurs="0"
     180        maxOccurs="unbounded"/>
     181    </xsd:sequence>
     182  </xsd:complexType>
     183
     184  <xsd:complexType name="vtopolanType">
     185    <xsd:annotation>
     186      <xsd:documentation>
     187        LAN in the virtual topology of a federated experiment (emulab legacy)
     188      </xsd:documentation>
     189    </xsd:annotation>
     190    <xsd:sequence>
     191      <xsd:element name="vname" type="xsd:string"/>
     192      <xsd:element name="vnode" type="xsd:string"/>
     193      <xsd:element name="ip" type="xsd:string"/>
     194      <xsd:element name="bandwidth" type="xsd:int"/>
     195      <xsd:element name="delay" type="xsd:float"/>
     196      <xsd:element name="member" type="xsd:string"/>
     197    </xsd:sequence>
     198  </xsd:complexType>
     199
     200  <xsd:complexType name="vtopolansType">
     201    <xsd:annotation>
     202      <xsd:documentation>
     203        Collection of LAN in the virtual topology of a federated experiment (emulab legacy)
     204      </xsd:documentation>
     205    </xsd:annotation>
     206    <xsd:sequence>
     207      <xsd:element name="lan" type="tns:vtopolanType" minOccurs="0"
     208        maxOccurs="unbounded"/>
     209    </xsd:sequence>
     210  </xsd:complexType>
     211
     212  <xsd:complexType name="vtopoType">
     213    <xsd:annotation>
     214      <xsd:documentation>
     215        The virtual topology of a federated experiment (emulab legacy)
     216      </xsd:documentation>
     217    </xsd:annotation>
     218    <xsd:sequence>
     219      <xsd:element name="nodes" type="tns:vtoponodesType"/>
     220      <xsd:element name="lans" type="tns:vtopolansType"/>
     221    </xsd:sequence>
     222  </xsd:complexType>
     223
     224  <xsd:complexType name="visnodeType">
     225    <xsd:annotation>
     226      <xsd:documentation>
     227        Node in the visualization of a federated experiment (emulab legacy)
     228      </xsd:documentation>
     229    </xsd:annotation>
     230    <xsd:sequence>
     231      <xsd:element name="name" type="xsd:string"/>
     232      <xsd:element name="x" type="xsd:int"/>
     233      <xsd:element name="y" type="xsd:int"/>
     234      <xsd:element name="type" type="xsd:string"/>
     235    </xsd:sequence>
     236  </xsd:complexType>
     237
     238  <xsd:complexType name="visType">
     239    <xsd:annotation>
     240      <xsd:documentation>
     241        The visualization of a federated experiment (emulab legacy)
     242      </xsd:documentation>
     243    </xsd:annotation>
     244    <xsd:sequence>
     245      <xsd:element name="node" type="tns:visnodeType" minOccurs="0"
    156246        maxOccurs="unbounded"/>
    157247    </xsd:sequence>
     
    246336    </xsd:annotation>
    247337    <xsd:sequence>
    248       <xsd:element name="emulab" type="emulabType" minOccurs="1"
    249         maxOccurs="unbounded"/>
     338      <xsd:element name="emulab" type="tns:emulabType" minOccurs="1"
     339        maxOccurs="unbounded"/>
     340      <xsd:element name="experiment" type="tns:vtopoType" minOccurs="0"
     341        maxOccurs="1"/>
     342      <xsd:element name="vis" type="tns:visType" minOccurs="0"
     343        maxOccurs="1"/>
    250344    </xsd:sequence>
    251345  </xsd:complexType>
Note: See TracChangeset for help on using the changeset viewer.