You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by la...@apache.org on 2014/05/21 19:56:52 UTC

[38/51] [abbrv] git commit: Changed the thrift model. AIRAVATA-1199

Changed the thrift model. AIRAVATA-1199

Project: http://git-wip-us.apache.org/repos/asf/airavata/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/70846f38
Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/70846f38
Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/70846f38

Branch: refs/heads/temp
Commit: 70846f388c1af98bacbc1ddb6c937ba35d874045
Parents: c11651b
Author: raminder <ra...@apache.org>
Authored: Tue May 6 11:32:11 2014 -0400
Committer: raminder <ra...@apache.org>
Committed: Tue May 6 11:32:11 2014 -0400

----------------------------------------------------------------------
 .../experimentModel.thrift                          | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata/blob/70846f38/airavata-api/thrift-interface-descriptions/experimentModel.thrift
----------------------------------------------------------------------
diff --git a/airavata-api/thrift-interface-descriptions/experimentModel.thrift b/airavata-api/thrift-interface-descriptions/experimentModel.thrift
index f01ae7d..bb627ae 100644
--- a/airavata-api/thrift-interface-descriptions/experimentModel.thrift
+++ b/airavata-api/thrift-interface-descriptions/experimentModel.thrift
@@ -178,6 +178,20 @@ enum CorrectiveAction {
     CANNOT_BE_DETERMINED
 }
 
+enum CorrectiveAction {
+    RETRY_SUBMISSION,
+    CONTACT_SUPPORT,
+    CANNOT_BE_DETERMINED
+}
+
+enum DataType{
+	STRING,
+	INTEGER,
+	URI,
+	STDOUT,
+	STDERR
+}
+
 /**
 * A structure  hold experiment input output
 *
@@ -185,7 +199,7 @@ enum CorrectiveAction {
 struct DataObjectType {
     1: required string key,
     2: optional string value,
-    3: optional string type,
+    3: optional DataType type,
     4: optional string metaData
 }