com.xiaomi.infra.galaxy.rpc.thrift.AppUserAuthProvider Maven / Gradle / Ivy
/**
* 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.rpc.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;
}
}
}