Repository: airavata Updated Branches: refs/heads/master 501f30bff -> ee1d26ca7
Minor changes to existing API method descriptions Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/ee1d26ca Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/ee1d26ca Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/ee1d26ca Branch: refs/heads/master Commit: ee1d26ca7b6a3090287eacb283cd64622059adac Parents: 501f30b Author: Eroma Abeysinghe <[email protected]> Authored: Tue Dec 15 16:00:26 2015 -0500 Committer: Eroma Abeysinghe <[email protected]> Committed: Tue Dec 15 16:00:26 2015 -0500 ---------------------------------------------------------------------- .../airavata-apis/airavata_api.thrift | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/ee1d26ca/thrift-interface-descriptions/airavata-apis/airavata_api.thrift ---------------------------------------------------------------------- diff --git a/thrift-interface-descriptions/airavata-apis/airavata_api.thrift b/thrift-interface-descriptions/airavata-apis/airavata_api.thrift index 285659c..9d3ed57 100644 --- a/thrift-interface-descriptions/airavata-apis/airavata_api.thrift +++ b/thrift-interface-descriptions/airavata-apis/airavata_api.thrift @@ -80,7 +80,7 @@ service Airavata { 3: airavata_errors.AiravataSystemException ase, 4: airavata_errors.AuthorizationException ae) - /** + /** * Register a Gateway with Airavata. * * @param gateway @@ -89,7 +89,7 @@ service Airavata { * @return gatewayId * Th unique identifier of the newly registered gateway. * - **/ + */ string addGateway(1: required security_model.AuthzToken authzToken, 2: required workspace_model.Gateway gateway) throws (1: airavata_errors.InvalidRequestException ire, @@ -97,16 +97,17 @@ service Airavata { 3: airavata_errors.AiravataSystemException ase, 4: airavata_errors.AuthorizationException ae) - /** - * Update previously registered gateway metadata. + /** + * Update previously registered Gateway metadata. * * @param gatewayId - * The gateway Id. + * The gateway Id of the Gateway which require an update. * * @param gateway * Modified gateway obejct. * - **/ + */ + void updateGateway(1: required security_model.AuthzToken authzToken, 2: required string gatewayId, 3: required workspace_model.Gateway updatedGateway) throws (1: airavata_errors.InvalidRequestException ire, 2: airavata_errors.AiravataClientException ace,
