Repository: airavata-php-gateway Updated Branches: refs/heads/grouper-integration a6659e7e5 -> 71b5efa19
adding missing file Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/71b5efa1 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/71b5efa1 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/71b5efa1 Branch: refs/heads/grouper-integration Commit: 71b5efa19479845de9996df983a2989e46692ac4 Parents: a6659e7 Author: scnakandala <[email protected]> Authored: Fri Jul 8 11:44:11 2016 -0400 Committer: scnakandala <[email protected]> Committed: Fri Jul 8 11:44:11 2016 -0400 ---------------------------------------------------------------------- app/libraries/Airavata/Model/Group/Types.php | 42 +++++++++++++++++++++++ 1 file changed, 42 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/71b5efa1/app/libraries/Airavata/Model/Group/Types.php ---------------------------------------------------------------------- diff --git a/app/libraries/Airavata/Model/Group/Types.php b/app/libraries/Airavata/Model/Group/Types.php new file mode 100644 index 0000000..c416f74 --- /dev/null +++ b/app/libraries/Airavata/Model/Group/Types.php @@ -0,0 +1,42 @@ +<?php +namespace Airavata\Model\Group; + +/** + * Autogenerated by Thrift Compiler (0.9.3) + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + * @generated + */ +use Thrift\Base\TBase; +use Thrift\Type\TType; +use Thrift\Type\TMessageType; +use Thrift\Exception\TException; +use Thrift\Exception\TProtocolException; +use Thrift\Protocol\TProtocol; +use Thrift\Protocol\TBinaryProtocolAccelerated; +use Thrift\Exception\TApplicationException; + + +final class ResourceType { + const PROJECT = 0; + const EXPERIMENT = 1; + const DATA = 2; + const OTHER = 3; + static public $__names = array( + 0 => 'PROJECT', + 1 => 'EXPERIMENT', + 2 => 'DATA', + 3 => 'OTHER', + ); +} + +final class ResourcePermissionType { + const WRITE = 0; + const READ = 1; + static public $__names = array( + 0 => 'WRITE', + 1 => 'READ', + ); +} + +
