You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by he...@apache.org on 2012/03/08 22:57:19 UTC

svn commit: r1298606 - /incubator/airavata/trunk/modules/commons/gfac-schema/src/main/resources/schemas/GFacParameterTypes.xsd

Author: heshan
Date: Thu Mar  8 21:57:19 2012
New Revision: 1298606

URL: http://svn.apache.org/viewvc?rev=1298606&view=rev
Log:
Adding StdOut and StdErr to the gfac-schema. These were mapped to xsd:String schema type. TODO: Need to find a better way to map this to xml schema type.

Modified:
    incubator/airavata/trunk/modules/commons/gfac-schema/src/main/resources/schemas/GFacParameterTypes.xsd

Modified: incubator/airavata/trunk/modules/commons/gfac-schema/src/main/resources/schemas/GFacParameterTypes.xsd
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/commons/gfac-schema/src/main/resources/schemas/GFacParameterTypes.xsd?rev=1298606&r1=1298605&r2=1298606&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/commons/gfac-schema/src/main/resources/schemas/GFacParameterTypes.xsd (original)
+++ incubator/airavata/trunk/modules/commons/gfac-schema/src/main/resources/schemas/GFacParameterTypes.xsd Thu Mar  8 21:57:19 2012
@@ -35,6 +35,8 @@
 			<enumeration value="IntegerArray" />
 			<enumeration value="FloatArray" />
 			<enumeration value="BooleanArray" />
+            <enumeration value="StdOut"/>
+            <enumeration value="StdErr"/>
 			<enumeration value="FileArray" />
 			<enumeration value="DataID" />
 			<enumeration value="DataIDArray" />
@@ -43,6 +45,28 @@
 		</restriction>
 	</simpleType>
 
+    <complexType name="StdOutParameterType">
+		<complexContent>
+			<extension base="gfac:ParameterType">
+				<sequence>
+					<element name="value" nillable="true" type="xsd:string" />
+				</sequence>
+				<attribute name="type" fixed="StdOut" />
+			</extension>
+		</complexContent>
+	</complexType>
+
+    <complexType name="StdErrParameterType">
+		<complexContent>
+			<extension base="gfac:ParameterType">
+				<sequence>
+					<element name="value" nillable="true" type="xsd:string" />
+				</sequence>
+				<attribute name="type" fixed="StdErr" />
+			</extension>
+		</complexContent>
+	</complexType>
+
 	<complexType name="StringParameterType">
 		<complexContent>
 			<extension base="gfac:ParameterType">