Repository: airavata Updated Branches: refs/heads/develop 3d44bc7a8 -> 5d8af3418
adding missing thrift generated files Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/5d8af341 Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/5d8af341 Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/5d8af341 Branch: refs/heads/develop Commit: 5d8af34188b594524b338ad794ba10bf52c16ad6 Parents: 3d44bc7 Author: scnakandala <[email protected]> Authored: Thu Jul 7 02:37:53 2016 -0400 Committer: scnakandala <[email protected]> Committed: Thu Jul 7 02:37:53 2016 -0400 ---------------------------------------------------------------------- .../model/group/ResourcePermissionType.java | 62 ++++++++++++++++++ .../airavata/model/group/ResourceType.java | 68 ++++++++++++++++++++ 2 files changed, 130 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/5d8af341/airavata-api/airavata-data-models/src/main/java/org/apache/airavata/model/group/ResourcePermissionType.java ---------------------------------------------------------------------- diff --git a/airavata-api/airavata-data-models/src/main/java/org/apache/airavata/model/group/ResourcePermissionType.java b/airavata-api/airavata-data-models/src/main/java/org/apache/airavata/model/group/ResourcePermissionType.java new file mode 100644 index 0000000..b355864 --- /dev/null +++ b/airavata-api/airavata-data-models/src/main/java/org/apache/airavata/model/group/ResourcePermissionType.java @@ -0,0 +1,62 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Autogenerated by Thrift Compiler (0.9.3) + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + * @generated + */ +package org.apache.airavata.model.group; + + +import java.util.Map; +import java.util.HashMap; +import org.apache.thrift.TEnum; + +public enum ResourcePermissionType implements org.apache.thrift.TEnum { + WRITE(0), + READ(1); + + private final int value; + + private ResourcePermissionType(int value) { + this.value = value; + } + + /** + * Get the integer value of this enum value, as defined in the Thrift IDL. + */ + public int getValue() { + return value; + } + + /** + * Find a the enum type by its integer value, as defined in the Thrift IDL. + * @return null if the value is not found. + */ + public static ResourcePermissionType findByValue(int value) { + switch (value) { + case 0: + return WRITE; + case 1: + return READ; + default: + return null; + } + } +} http://git-wip-us.apache.org/repos/asf/airavata/blob/5d8af341/airavata-api/airavata-data-models/src/main/java/org/apache/airavata/model/group/ResourceType.java ---------------------------------------------------------------------- diff --git a/airavata-api/airavata-data-models/src/main/java/org/apache/airavata/model/group/ResourceType.java b/airavata-api/airavata-data-models/src/main/java/org/apache/airavata/model/group/ResourceType.java new file mode 100644 index 0000000..e9b034a --- /dev/null +++ b/airavata-api/airavata-data-models/src/main/java/org/apache/airavata/model/group/ResourceType.java @@ -0,0 +1,68 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Autogenerated by Thrift Compiler (0.9.3) + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + * @generated + */ +package org.apache.airavata.model.group; + + +import java.util.Map; +import java.util.HashMap; +import org.apache.thrift.TEnum; + +public enum ResourceType implements org.apache.thrift.TEnum { + PROJECT(0), + EXPERIMENT(1), + DATA(2), + OTHER(3); + + private final int value; + + private ResourceType(int value) { + this.value = value; + } + + /** + * Get the integer value of this enum value, as defined in the Thrift IDL. + */ + public int getValue() { + return value; + } + + /** + * Find a the enum type by its integer value, as defined in the Thrift IDL. + * @return null if the value is not found. + */ + public static ResourceType findByValue(int value) { + switch (value) { + case 0: + return PROJECT; + case 1: + return EXPERIMENT; + case 2: + return DATA; + case 3: + return OTHER; + default: + return null; + } + } +}
