All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xiaomi.infra.galaxy.sds.thrift.AppUserAuthProvider Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
/**
 * Autogenerated by Thrift Compiler (0.9.2)
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 *  @generated
 */
package com.xiaomi.infra.galaxy.sds.thrift;


import java.util.Map;
import java.util.HashMap;
import libthrift091.TEnum;

/**
 * 第三方身份认证提供方,用于认证应用用户(非开发者)。
 * 目前提供小米SSO和几种常见OAuth系统
 */
public enum AppUserAuthProvider implements libthrift091.TEnum {
  XIAOMI_SSO(1),
  XIAOMI_OAUTH(2),
  QQ_OAUTH(3),
  SINA_OAUTH(4),
  RENREN_OAUTH(5);

  private final int value;

  private AppUserAuthProvider(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 AppUserAuthProvider findByValue(int value) { 
    switch (value) {
      case 1:
        return XIAOMI_SSO;
      case 2:
        return XIAOMI_OAUTH;
      case 3:
        return QQ_OAUTH;
      case 4:
        return SINA_OAUTH;
      case 5:
        return RENREN_OAUTH;
      default:
        return null;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy