summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/bwlp/thrift/iface/Role.java
diff options
context:
space:
mode:
authorSimon Rettberg2015-06-19 18:07:10 +0200
committerSimon Rettberg2015-06-19 18:07:10 +0200
commit8abf8623f13c2bc02c31fa636a9851eb3ef6e68e (patch)
treeb28c4cdcd5e6c0c32a69f2851345c18791b6e30b /src/main/java/org/openslx/bwlp/thrift/iface/Role.java
parentUpdated Thrift API (diff)
downloadmaster-sync-shared-8abf8623f13c2bc02c31fa636a9851eb3ef6e68e.tar.gz
master-sync-shared-8abf8623f13c2bc02c31fa636a9851eb3ef6e68e.tar.xz
master-sync-shared-8abf8623f13c2bc02c31fa636a9851eb3ef6e68e.zip
Add more Thrift calls
Diffstat (limited to 'src/main/java/org/openslx/bwlp/thrift/iface/Role.java')
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/Role.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/Role.java b/src/main/java/org/openslx/bwlp/thrift/iface/Role.java
new file mode 100644
index 0000000..d15f3b0
--- /dev/null
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/Role.java
@@ -0,0 +1,45 @@
+/**
+ * Autogenerated by Thrift Compiler (0.9.1)
+ *
+ * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
+ * @generated
+ */
+package org.openslx.bwlp.thrift.iface;
+
+
+import java.util.Map;
+import java.util.HashMap;
+import org.apache.thrift.TEnum;
+
+public enum Role implements org.apache.thrift.TEnum {
+ STUDENT(0),
+ TUTOR(1);
+
+ private final int value;
+
+ private Role(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 Role findByValue(int value) {
+ switch (value) {
+ case 0:
+ return STUDENT;
+ case 1:
+ return TUTOR;
+ default:
+ return null;
+ }
+ }
+}