summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/imagemaster/thrift/iface/AuthorizationError.java
diff options
context:
space:
mode:
authorMichael Petretti2014-06-30 17:01:55 +0200
committerMichael Petretti2014-06-30 17:01:55 +0200
commit1b39050799007be95c5c2b33e9d444fcb8d5d3d4 (patch)
treedd84a065e03b45a81f8516849b3d61895932c8de /src/main/java/org/openslx/imagemaster/thrift/iface/AuthorizationError.java
parentremoved a Method. (diff)
downloadsatellite-daemon-1b39050799007be95c5c2b33e9d444fcb8d5d3d4.tar.gz
satellite-daemon-1b39050799007be95c5c2b33e9d444fcb8d5d3d4.tar.xz
satellite-daemon-1b39050799007be95c5c2b33e9d444fcb8d5d3d4.zip
dependencies from master-sync-shared
Diffstat (limited to 'src/main/java/org/openslx/imagemaster/thrift/iface/AuthorizationError.java')
-rw-r--r--src/main/java/org/openslx/imagemaster/thrift/iface/AuthorizationError.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/main/java/org/openslx/imagemaster/thrift/iface/AuthorizationError.java b/src/main/java/org/openslx/imagemaster/thrift/iface/AuthorizationError.java
deleted file mode 100644
index a49ad92..0000000
--- a/src/main/java/org/openslx/imagemaster/thrift/iface/AuthorizationError.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/**
- * 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.imagemaster.thrift.iface;
-
-
-import java.util.Map;
-import java.util.HashMap;
-import org.apache.thrift.TEnum;
-
-public enum AuthorizationError implements org.apache.thrift.TEnum {
- GENERIC_ERROR(0),
- NOT_AUTHENTICATED(1),
- NO_PERMISSION(2);
-
- private final int value;
-
- private AuthorizationError(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 AuthorizationError findByValue(int value) {
- switch (value) {
- case 0:
- return GENERIC_ERROR;
- case 1:
- return NOT_AUTHENTICATED;
- case 2:
- return NO_PERMISSION;
- default:
- return null;
- }
- }
-}