summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/bwlp/thrift/iface/InvocationError.java
diff options
context:
space:
mode:
authorSimon Rettberg2015-08-27 18:08:25 +0200
committerSimon Rettberg2015-08-27 18:08:25 +0200
commit0bd6a575c6d6e7d63cd490b131e626356e938202 (patch)
tree52c0d6dd819103418816ec3d9adcff5759b0aa38 /src/main/java/org/openslx/bwlp/thrift/iface/InvocationError.java
parentMinor tweaks to filetransfer/chunklist related classes (diff)
downloadmaster-sync-shared-0bd6a575c6d6e7d63cd490b131e626356e938202.tar.gz
master-sync-shared-0bd6a575c6d6e7d63cd490b131e626356e938202.tar.xz
master-sync-shared-0bd6a575c6d6e7d63cd490b131e626356e938202.zip
Thrift API changes
Diffstat (limited to 'src/main/java/org/openslx/bwlp/thrift/iface/InvocationError.java')
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/InvocationError.java60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/InvocationError.java b/src/main/java/org/openslx/bwlp/thrift/iface/InvocationError.java
new file mode 100644
index 0000000..e94bd60
--- /dev/null
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/InvocationError.java
@@ -0,0 +1,60 @@
+/**
+ * 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 InvocationError implements org.apache.thrift.TEnum {
+ MISSING_DATA(0),
+ INVALID_DATA(1),
+ UNKNOWN_IMAGE(2),
+ UNKNOWN_USER(3),
+ UNKNOWN_LECTURE(4),
+ INVALID_SHARE_MODE(5),
+ INTERNAL_SERVER_ERROR(6);
+
+ private final int value;
+
+ private InvocationError(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 InvocationError findByValue(int value) {
+ switch (value) {
+ case 0:
+ return MISSING_DATA;
+ case 1:
+ return INVALID_DATA;
+ case 2:
+ return UNKNOWN_IMAGE;
+ case 3:
+ return UNKNOWN_USER;
+ case 4:
+ return UNKNOWN_LECTURE;
+ case 5:
+ return INVALID_SHARE_MODE;
+ case 6:
+ return INTERNAL_SERVER_ERROR;
+ default:
+ return null;
+ }
+ }
+}