gworkflowdl_1_1.xsd

http://www.gridworkflow.org/gworkflowdl
element token

Documentation
A token represents state information, such as true/false (control token)
or arbitrary XML (data token).
                                    
Properties
This component is not nillable.

Model
<token>
(property*, (data | control)? )
</token>


Nested Element Summary
xs:booleancontrol
           A control token can either be "true" or "false", reflecting the exit status of the previous transition.  
 data
           The data element can hold one single child element with arbitrary XML representing data (e.g., SOAP parameters) or references to data (e.g., filenames).  
 property
          
Source
<xs:element maxOccurs="unbounded" minOccurs="0" name="token">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" ref="property"/>
<xs:choice minOccurs="0">
<xs:element name="data">
<xs:complexType>
<xs:sequence>
<xs:any maxOccurs="unbounded" minOccurs="0" namespace="##any" processContents="lax"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="control" type="xs:boolean">
</xs:element>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>

gworkflowdl_1_1.xsd

Submit a bug or a feature.
Created by xsddoc, a sub project of xframe, hosted at http://xframe.sourceforge.net.