summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/bwlp/thrift/iface/AuthorizationError.java
blob: d39865e861d5c0c2b20654ff93afdc924333fbca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
 * Autogenerated by Thrift Compiler (0.15.0)
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 *  @generated
 */
package org.openslx.bwlp.thrift.iface;


@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.15.0)", date = "2021-12-17")
public enum AuthorizationError implements org.apache.thrift.TEnum {
  GENERIC_ERROR(0),
  NOT_AUTHENTICATED(1),
  NO_PERMISSION(2),
  ACCOUNT_SUSPENDED(3),
  ORGANIZATION_SUSPENDED(4),
  INVALID_CREDENTIALS(5),
  INVALID_ORGANIZATION(6),
  INVALID_KEY(7),
  INVALID_TOKEN(8),
  CHALLENGE_FAILED(9),
  BANNED_NETWORK(10);

  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.
   */
  @org.apache.thrift.annotation.Nullable
  public static AuthorizationError findByValue(int value) { 
    switch (value) {
      case 0:
        return GENERIC_ERROR;
      case 1:
        return NOT_AUTHENTICATED;
      case 2:
        return NO_PERMISSION;
      case 3:
        return ACCOUNT_SUSPENDED;
      case 4:
        return ORGANIZATION_SUSPENDED;
      case 5:
        return INVALID_CREDENTIALS;
      case 6:
        return INVALID_ORGANIZATION;
      case 7:
        return INVALID_KEY;
      case 8:
        return INVALID_TOKEN;
      case 9:
        return CHALLENGE_FAILED;
      case 10:
        return BANNED_NETWORK;
      default:
        return null;
    }
  }
}