Changeset 6679c122


Ignore:
Timestamp:
Aug 19, 2008 6:21:59 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:
7add1a3
Parents:
8f4c361
Message:

beginnings of federated creation interfaces

Location:
fedd
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • fedd/.cvsignore

    r8f4c361 r6679c122  
    44fedd_services.py*
    55fedd_services_types.py*
     6fedd_internal_services.py*
    67*.pyc
  • fedd/fedd_types.xsd

    r8f4c361 r6679c122  
    111111  </xsd:complexType>
    112112
     113  <xsd:complexType name="mapType">
     114    <xsd:annotation>
     115      <xsd:documentation>
     116        Explicit translation of testbed attribute in a federated experiment
     117        description.  Used in a creation request.
     118      </xsd:documentation>
     119    </xsd:annotation>
     120    <xsd:sequence>
     121      <xsd:element name="testbed" type="tns:IDType"/>
     122      <xsd:element name="uri" type="xsd:string"/>
     123    </xsd:sequence>
     124  </xsd:complexType>
     125
     126
    113127  <xsd:complexType name="projectType">
    114128    <xsd:annotation>
     
    118132    </xsd:annotation>
    119133    <xsd:sequence>
     134      <xsd:element name="testbed" type="tns:IDType" minOccurs="0"
     135        maxOccurs="1"/>
    120136      <xsd:element name="name" type="tns:IDType" minOccurs="0" maxOccurs="1"/>
    121137      <xsd:element name="user" type="tns:userType" minOccurs="0"
     
    204220      <xsd:element name="until" type="xsd:dateTime" minOccurs="0"
    205221        maxOccurs="1"/>
     222    </xsd:sequence>
     223  </xsd:complexType>
     224
     225  <xsd:complexType name="createRequestType">
     226    <xsd:annotation>
     227      <xsd:documentation>
     228        A request to embed a federated experiment across testbeds
     229      </xsd:documentation>
     230    </xsd:annotation>
     231    <xsd:sequence>
     232      <xsd:element name="testbedmap" type="tns:mapType" minOccurs="0"
     233        maxOccurs="unbounded"/>
     234      <xsd:element name="user" type="tns:userType" minOccurs="1"
     235        maxOccurs="unbounded"/>
     236      <xsd:element name="experimentdescription" type="xsd:base64Binary"/>
     237    </xsd:sequence>
     238  </xsd:complexType>
     239
     240  <xsd:complexType name="createResponseType">
     241    <xsd:annotation>
     242      <xsd:documentation>
     243        A request to embed a federated experiment across testbeds
     244      </xsd:documentation>
     245    </xsd:annotation>
     246    <xsd:sequence>
     247      <xsd:element name="project" type="projectType" minOccurs="1"
     248        maxOccurs="unbounded"/>
    206249    </xsd:sequence>
    207250  </xsd:complexType>
Note: See TracChangeset for help on using the changeset viewer.