Ignore:
Timestamp:
Jul 2, 2009 11:52:50 AM (15 years ago)
Author:
Jay Jacobs <Jay.Jacobs@…>
Branches:
axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
Children:
67c0e15
Parents:
f76d3d7
Message:

Initial version of abac.wsdl with ant file for building java classes from
the wsdl and schemas.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/wsdl/abac_types.xsd

    rf76d3d7 r7a1918e  
    3232  </xsd:complexType>
    3333 
     34  <xsd:complexType name="negotiationRequest">
     35    <xsd:sequence>
     36      <xsd:element name="context" type="tns:contextInfo"
     37        minOccurs="1" maxOccurs="1"/>
     38      <xsd:element name="goal" type="xsd:string"
     39        minOccurs="1" maxOccurs="1"/>
     40    </xsd:sequence>
     41  </xsd:complexType>
     42
     43  <xsd:complexType name="negotiationResult">
     44    <xsd:sequence>
     45      <xsd:element name="goal" type="xsd:string"
     46        minOccurs="1" maxOccurs="1"/>
     47      <xsd:element name="result" type="xsd:string"
     48        minOccurs="1" maxOccurs="1"/>
     49      <xsd:element name="provenance" type="xsd:string"
     50        minOccurs="0" maxOccurs="1"/>
     51    </xsd:sequence>
     52  </xsd:complexType>
     53
     54  <!--Context info can be: the context data, a file pointing to the data, or
     55        a uid handle to the data-->
     56  <xsd:complexType name="contextInfo">
     57    <xsd:choice>
     58      <xsd:element name="context" type="tns:negotiationContext"/>
     59      <xsd:element name="contextFile" type="xsd:string"/>
     60      <xsd:element name="contextID" type="xsd:string"/>
     61    </xsd:choice>
     62  </xsd:complexType>
     63
    3464  <xsd:complexType name="negotiationContext">
    3565    <xsd:sequence>
Note: See TracChangeset for help on using the changeset viewer.