Repository: airavata Updated Branches: refs/heads/master c11651bc5 -> 04269ff81
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/master Commit: 70846f388c1af98bacbc1ddb6c937ba35d874045 Parents: c11651b Author: raminder <[email protected]> Authored: Tue May 6 11:32:11 2014 -0400 Committer: raminder <[email protected]> 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 }
