com.xiaomi.infra.galaxy.rpc.thrift.Credential 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 libthrift091.scheme.IScheme;
import libthrift091.scheme.SchemeFactory;
import libthrift091.scheme.StandardScheme;
import libthrift091.scheme.TupleScheme;
import libthrift091.protocol.TTupleProtocol;
import libthrift091.protocol.TProtocolException;
import libthrift091.EncodingUtils;
import libthrift091.TException;
import libthrift091.async.AsyncMethodCallback;
import libthrift091.server.AbstractNonblockingServer.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.EnumMap;
import java.util.Set;
import java.util.HashSet;
import java.util.EnumSet;
import java.util.Collections;
import java.util.BitSet;
import java.nio.ByteBuffer;
import java.util.Arrays;
import javax.annotation.Generated;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"})
/**
* 小米存储系统认证信息
*/
@Generated(value = "Autogenerated by Thrift Compiler (0.9.2)", date = "2016-6-16")
public class Credential implements libthrift091.TBase, java.io.Serializable, Cloneable, Comparable {
private static final libthrift091.protocol.TStruct STRUCT_DESC = new libthrift091.protocol.TStruct("Credential");
private static final libthrift091.protocol.TField TYPE_FIELD_DESC = new libthrift091.protocol.TField("type", libthrift091.protocol.TType.I32, (short)1);
private static final libthrift091.protocol.TField SECRET_KEY_ID_FIELD_DESC = new libthrift091.protocol.TField("secretKeyId", libthrift091.protocol.TType.STRING, (short)2);
private static final libthrift091.protocol.TField SECRET_KEY_FIELD_DESC = new libthrift091.protocol.TField("secretKey", libthrift091.protocol.TType.STRING, (short)3);
private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>();
static {
schemes.put(StandardScheme.class, new CredentialStandardSchemeFactory());
schemes.put(TupleScheme.class, new CredentialTupleSchemeFactory());
}
/**
* 用户登录类型
*
* @see UserType
*/
public UserType type; // optional
/**
* 用于服务端查询SecretKey的键值:
* 1) userId: 对应User Secret
* 2) appId: 对应App Secret,匿名登录也需设置
* 3) storageAccessTokenId: 对应Storage Access Token
*/
public String secretKeyId; // optional
/**
* Secret Key
*/
public String secretKey; // optional
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements libthrift091.TFieldIdEnum {
/**
* 用户登录类型
*
* @see UserType
*/
TYPE((short)1, "type"),
/**
* 用于服务端查询SecretKey的键值:
* 1) userId: 对应User Secret
* 2) appId: 对应App Secret,匿名登录也需设置
* 3) storageAccessTokenId: 对应Storage Access Token
*/
SECRET_KEY_ID((short)2, "secretKeyId"),
/**
* Secret Key
*/
SECRET_KEY((short)3, "secretKey");
private static final Map byName = new HashMap();
static {
for (_Fields field : EnumSet.allOf(_Fields.class)) {
byName.put(field.getFieldName(), field);
}
}
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // TYPE
return TYPE;
case 2: // SECRET_KEY_ID
return SECRET_KEY_ID;
case 3: // SECRET_KEY
return SECRET_KEY;
default:
return null;
}
}
/**
* Find the _Fields constant that matches fieldId, throwing an exception
* if it is not found.
*/
public static _Fields findByThriftIdOrThrow(int fieldId) {
_Fields fields = findByThriftId(fieldId);
if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
public static _Fields findByName(String name) {
return byName.get(name);
}
private final short _thriftId;
private final String _fieldName;
_Fields(short thriftId, String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
public short getThriftFieldId() {
return _thriftId;
}
public String getFieldName() {
return _fieldName;
}
}
// isset id assignments
private static final _Fields optionals[] = {_Fields.TYPE,_Fields.SECRET_KEY_ID,_Fields.SECRET_KEY};
public static final Map<_Fields, libthrift091.meta_data.FieldMetaData> metaDataMap;
static {
Map<_Fields, libthrift091.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, libthrift091.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.TYPE, new libthrift091.meta_data.FieldMetaData("type", libthrift091.TFieldRequirementType.OPTIONAL,
new libthrift091.meta_data.EnumMetaData(libthrift091.protocol.TType.ENUM, UserType.class)));
tmpMap.put(_Fields.SECRET_KEY_ID, new libthrift091.meta_data.FieldMetaData("secretKeyId", libthrift091.TFieldRequirementType.OPTIONAL,
new libthrift091.meta_data.FieldValueMetaData(libthrift091.protocol.TType.STRING)));
tmpMap.put(_Fields.SECRET_KEY, new libthrift091.meta_data.FieldMetaData("secretKey", libthrift091.TFieldRequirementType.OPTIONAL,
new libthrift091.meta_data.FieldValueMetaData(libthrift091.protocol.TType.STRING)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
libthrift091.meta_data.FieldMetaData.addStructMetaDataMap(Credential.class, metaDataMap);
}
public Credential() {
}
/**
* Performs a deep copy on other.
*/
public Credential(Credential other) {
if (other.isSetType()) {
this.type = other.type;
}
if (other.isSetSecretKeyId()) {
this.secretKeyId = other.secretKeyId;
}
if (other.isSetSecretKey()) {
this.secretKey = other.secretKey;
}
}
public Credential deepCopy() {
return new Credential(this);
}
@Override
public void clear() {
this.type = null;
this.secretKeyId = null;
this.secretKey = null;
}
/**
* 用户登录类型
*
* @see UserType
*/
public UserType getType() {
return this.type;
}
/**
* 用户登录类型
*
* @see UserType
*/
public Credential setType(UserType type) {
this.type = type;
return this;
}
public void unsetType() {
this.type = null;
}
/** Returns true if field type is set (has been assigned a value) and false otherwise */
public boolean isSetType() {
return this.type != null;
}
public void setTypeIsSet(boolean value) {
if (!value) {
this.type = null;
}
}
/**
* 用于服务端查询SecretKey的键值:
* 1) userId: 对应User Secret
* 2) appId: 对应App Secret,匿名登录也需设置
* 3) storageAccessTokenId: 对应Storage Access Token
*/
public String getSecretKeyId() {
return this.secretKeyId;
}
/**
* 用于服务端查询SecretKey的键值:
* 1) userId: 对应User Secret
* 2) appId: 对应App Secret,匿名登录也需设置
* 3) storageAccessTokenId: 对应Storage Access Token
*/
public Credential setSecretKeyId(String secretKeyId) {
this.secretKeyId = secretKeyId;
return this;
}
public void unsetSecretKeyId() {
this.secretKeyId = null;
}
/** Returns true if field secretKeyId is set (has been assigned a value) and false otherwise */
public boolean isSetSecretKeyId() {
return this.secretKeyId != null;
}
public void setSecretKeyIdIsSet(boolean value) {
if (!value) {
this.secretKeyId = null;
}
}
/**
* Secret Key
*/
public String getSecretKey() {
return this.secretKey;
}
/**
* Secret Key
*/
public Credential setSecretKey(String secretKey) {
this.secretKey = secretKey;
return this;
}
public void unsetSecretKey() {
this.secretKey = null;
}
/** Returns true if field secretKey is set (has been assigned a value) and false otherwise */
public boolean isSetSecretKey() {
return this.secretKey != null;
}
public void setSecretKeyIsSet(boolean value) {
if (!value) {
this.secretKey = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case TYPE:
if (value == null) {
unsetType();
} else {
setType((UserType)value);
}
break;
case SECRET_KEY_ID:
if (value == null) {
unsetSecretKeyId();
} else {
setSecretKeyId((String)value);
}
break;
case SECRET_KEY:
if (value == null) {
unsetSecretKey();
} else {
setSecretKey((String)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case TYPE:
return getType();
case SECRET_KEY_ID:
return getSecretKeyId();
case SECRET_KEY:
return getSecretKey();
}
throw new IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
public boolean isSet(_Fields field) {
if (field == null) {
throw new IllegalArgumentException();
}
switch (field) {
case TYPE:
return isSetType();
case SECRET_KEY_ID:
return isSetSecretKeyId();
case SECRET_KEY:
return isSetSecretKey();
}
throw new IllegalStateException();
}
@Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof Credential)
return this.equals((Credential)that);
return false;
}
public boolean equals(Credential that) {
if (that == null)
return false;
boolean this_present_type = true && this.isSetType();
boolean that_present_type = true && that.isSetType();
if (this_present_type || that_present_type) {
if (!(this_present_type && that_present_type))
return false;
if (!this.type.equals(that.type))
return false;
}
boolean this_present_secretKeyId = true && this.isSetSecretKeyId();
boolean that_present_secretKeyId = true && that.isSetSecretKeyId();
if (this_present_secretKeyId || that_present_secretKeyId) {
if (!(this_present_secretKeyId && that_present_secretKeyId))
return false;
if (!this.secretKeyId.equals(that.secretKeyId))
return false;
}
boolean this_present_secretKey = true && this.isSetSecretKey();
boolean that_present_secretKey = true && that.isSetSecretKey();
if (this_present_secretKey || that_present_secretKey) {
if (!(this_present_secretKey && that_present_secretKey))
return false;
if (!this.secretKey.equals(that.secretKey))
return false;
}
return true;
}
@Override
public int hashCode() {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy