Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
cicada.departdriver.config.UserAuth Maven / Gradle / Ivy
/**
* Autogenerated by Thrift Compiler (0.10.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package cicada.departdriver.config;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.10.0)", date = "2017-06-19")
public class UserAuth implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("UserAuth");
private static final org.apache.thrift.protocol.TField ENTERPRISE_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("EnterpriseID", org.apache.thrift.protocol.TType.STRING, (short)1);
private static final org.apache.thrift.protocol.TField USER_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("UserID", org.apache.thrift.protocol.TType.STRING, (short)2);
private static final org.apache.thrift.protocol.TField MODULES_FIELD_DESC = new org.apache.thrift.protocol.TField("Modules", org.apache.thrift.protocol.TType.STRING, (short)3);
private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new UserAuthStandardSchemeFactory();
private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new UserAuthTupleSchemeFactory();
public java.lang.String EnterpriseID; // required
public java.lang.String UserID; // required
public java.lang.String Modules; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
ENTERPRISE_ID((short)1, "EnterpriseID"),
USER_ID((short)2, "UserID"),
MODULES((short)3, "Modules");
private static final java.util.Map byName = new java.util.HashMap();
static {
for (_Fields field : java.util.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: // ENTERPRISE_ID
return ENTERPRISE_ID;
case 2: // USER_ID
return USER_ID;
case 3: // MODULES
return MODULES;
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 java.lang.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(java.lang.String name) {
return byName.get(name);
}
private final short _thriftId;
private final java.lang.String _fieldName;
_Fields(short thriftId, java.lang.String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
public short getThriftFieldId() {
return _thriftId;
}
public java.lang.String getFieldName() {
return _fieldName;
}
}
// isset id assignments
public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.ENTERPRISE_ID, new org.apache.thrift.meta_data.FieldMetaData("EnterpriseID", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.USER_ID, new org.apache.thrift.meta_data.FieldMetaData("UserID", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.MODULES, new org.apache.thrift.meta_data.FieldMetaData("Modules", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(UserAuth.class, metaDataMap);
}
public UserAuth() {
}
public UserAuth(
java.lang.String EnterpriseID,
java.lang.String UserID,
java.lang.String Modules)
{
this();
this.EnterpriseID = EnterpriseID;
this.UserID = UserID;
this.Modules = Modules;
}
/**
* Performs a deep copy on other .
*/
public UserAuth(UserAuth other) {
if (other.isSetEnterpriseID()) {
this.EnterpriseID = other.EnterpriseID;
}
if (other.isSetUserID()) {
this.UserID = other.UserID;
}
if (other.isSetModules()) {
this.Modules = other.Modules;
}
}
public UserAuth deepCopy() {
return new UserAuth(this);
}
@Override
public void clear() {
this.EnterpriseID = null;
this.UserID = null;
this.Modules = null;
}
public java.lang.String getEnterpriseID() {
return this.EnterpriseID;
}
public UserAuth setEnterpriseID(java.lang.String EnterpriseID) {
this.EnterpriseID = EnterpriseID;
return this;
}
public void unsetEnterpriseID() {
this.EnterpriseID = null;
}
/** Returns true if field EnterpriseID is set (has been assigned a value) and false otherwise */
public boolean isSetEnterpriseID() {
return this.EnterpriseID != null;
}
public void setEnterpriseIDIsSet(boolean value) {
if (!value) {
this.EnterpriseID = null;
}
}
public java.lang.String getUserID() {
return this.UserID;
}
public UserAuth setUserID(java.lang.String UserID) {
this.UserID = UserID;
return this;
}
public void unsetUserID() {
this.UserID = null;
}
/** Returns true if field UserID is set (has been assigned a value) and false otherwise */
public boolean isSetUserID() {
return this.UserID != null;
}
public void setUserIDIsSet(boolean value) {
if (!value) {
this.UserID = null;
}
}
public java.lang.String getModules() {
return this.Modules;
}
public UserAuth setModules(java.lang.String Modules) {
this.Modules = Modules;
return this;
}
public void unsetModules() {
this.Modules = null;
}
/** Returns true if field Modules is set (has been assigned a value) and false otherwise */
public boolean isSetModules() {
return this.Modules != null;
}
public void setModulesIsSet(boolean value) {
if (!value) {
this.Modules = null;
}
}
public void setFieldValue(_Fields field, java.lang.Object value) {
switch (field) {
case ENTERPRISE_ID:
if (value == null) {
unsetEnterpriseID();
} else {
setEnterpriseID((java.lang.String)value);
}
break;
case USER_ID:
if (value == null) {
unsetUserID();
} else {
setUserID((java.lang.String)value);
}
break;
case MODULES:
if (value == null) {
unsetModules();
} else {
setModules((java.lang.String)value);
}
break;
}
}
public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case ENTERPRISE_ID:
return getEnterpriseID();
case USER_ID:
return getUserID();
case MODULES:
return getModules();
}
throw new java.lang.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 java.lang.IllegalArgumentException();
}
switch (field) {
case ENTERPRISE_ID:
return isSetEnterpriseID();
case USER_ID:
return isSetUserID();
case MODULES:
return isSetModules();
}
throw new java.lang.IllegalStateException();
}
@Override
public boolean equals(java.lang.Object that) {
if (that == null)
return false;
if (that instanceof UserAuth)
return this.equals((UserAuth)that);
return false;
}
public boolean equals(UserAuth that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_EnterpriseID = true && this.isSetEnterpriseID();
boolean that_present_EnterpriseID = true && that.isSetEnterpriseID();
if (this_present_EnterpriseID || that_present_EnterpriseID) {
if (!(this_present_EnterpriseID && that_present_EnterpriseID))
return false;
if (!this.EnterpriseID.equals(that.EnterpriseID))
return false;
}
boolean this_present_UserID = true && this.isSetUserID();
boolean that_present_UserID = true && that.isSetUserID();
if (this_present_UserID || that_present_UserID) {
if (!(this_present_UserID && that_present_UserID))
return false;
if (!this.UserID.equals(that.UserID))
return false;
}
boolean this_present_Modules = true && this.isSetModules();
boolean that_present_Modules = true && that.isSetModules();
if (this_present_Modules || that_present_Modules) {
if (!(this_present_Modules && that_present_Modules))
return false;
if (!this.Modules.equals(that.Modules))
return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = hashCode * 8191 + ((isSetEnterpriseID()) ? 131071 : 524287);
if (isSetEnterpriseID())
hashCode = hashCode * 8191 + EnterpriseID.hashCode();
hashCode = hashCode * 8191 + ((isSetUserID()) ? 131071 : 524287);
if (isSetUserID())
hashCode = hashCode * 8191 + UserID.hashCode();
hashCode = hashCode * 8191 + ((isSetModules()) ? 131071 : 524287);
if (isSetModules())
hashCode = hashCode * 8191 + Modules.hashCode();
return hashCode;
}
@Override
public int compareTo(UserAuth other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
lastComparison = java.lang.Boolean.valueOf(isSetEnterpriseID()).compareTo(other.isSetEnterpriseID());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetEnterpriseID()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.EnterpriseID, other.EnterpriseID);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.valueOf(isSetUserID()).compareTo(other.isSetUserID());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetUserID()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.UserID, other.UserID);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.valueOf(isSetModules()).compareTo(other.isSetModules());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetModules()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.Modules, other.Modules);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
scheme(iprot).read(iprot, this);
}
public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
scheme(oprot).write(oprot, this);
}
@Override
public java.lang.String toString() {
java.lang.StringBuilder sb = new java.lang.StringBuilder("UserAuth(");
boolean first = true;
sb.append("EnterpriseID:");
if (this.EnterpriseID == null) {
sb.append("null");
} else {
sb.append(this.EnterpriseID);
}
first = false;
if (!first) sb.append(", ");
sb.append("UserID:");
if (this.UserID == null) {
sb.append("null");
} else {
sb.append(this.UserID);
}
first = false;
if (!first) sb.append(", ");
sb.append("Modules:");
if (this.Modules == null) {
sb.append("null");
} else {
sb.append(this.Modules);
}
first = false;
sb.append(")");
return sb.toString();
}
public void validate() throws org.apache.thrift.TException {
// check for required fields
// check for sub-struct validity
}
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
try {
write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
} catch (org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException {
try {
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
} catch (org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private static class UserAuthStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public UserAuthStandardScheme getScheme() {
return new UserAuthStandardScheme();
}
}
private static class UserAuthStandardScheme extends org.apache.thrift.scheme.StandardScheme {
public void read(org.apache.thrift.protocol.TProtocol iprot, UserAuth struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TField schemeField;
iprot.readStructBegin();
while (true)
{
schemeField = iprot.readFieldBegin();
if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
break;
}
switch (schemeField.id) {
case 1: // ENTERPRISE_ID
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.EnterpriseID = iprot.readString();
struct.setEnterpriseIDIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 2: // USER_ID
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.UserID = iprot.readString();
struct.setUserIDIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 3: // MODULES
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.Modules = iprot.readString();
struct.setModulesIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
// check for required fields of primitive type, which can't be checked in the validate method
struct.validate();
}
public void write(org.apache.thrift.protocol.TProtocol oprot, UserAuth struct) throws org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
if (struct.EnterpriseID != null) {
oprot.writeFieldBegin(ENTERPRISE_ID_FIELD_DESC);
oprot.writeString(struct.EnterpriseID);
oprot.writeFieldEnd();
}
if (struct.UserID != null) {
oprot.writeFieldBegin(USER_ID_FIELD_DESC);
oprot.writeString(struct.UserID);
oprot.writeFieldEnd();
}
if (struct.Modules != null) {
oprot.writeFieldBegin(MODULES_FIELD_DESC);
oprot.writeString(struct.Modules);
oprot.writeFieldEnd();
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
}
private static class UserAuthTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public UserAuthTupleScheme getScheme() {
return new UserAuthTupleScheme();
}
}
private static class UserAuthTupleScheme extends org.apache.thrift.scheme.TupleScheme {
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, UserAuth struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet optionals = new java.util.BitSet();
if (struct.isSetEnterpriseID()) {
optionals.set(0);
}
if (struct.isSetUserID()) {
optionals.set(1);
}
if (struct.isSetModules()) {
optionals.set(2);
}
oprot.writeBitSet(optionals, 3);
if (struct.isSetEnterpriseID()) {
oprot.writeString(struct.EnterpriseID);
}
if (struct.isSetUserID()) {
oprot.writeString(struct.UserID);
}
if (struct.isSetModules()) {
oprot.writeString(struct.Modules);
}
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, UserAuth struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
struct.EnterpriseID = iprot.readString();
struct.setEnterpriseIDIsSet(true);
}
if (incoming.get(1)) {
struct.UserID = iprot.readString();
struct.setUserIDIsSet(true);
}
if (incoming.get(2)) {
struct.Modules = iprot.readString();
struct.setModulesIsSet(true);
}
}
}
private static S scheme(org.apache.thrift.protocol.TProtocol proto) {
return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
}
}