Blame | Last modification | View Log | RSS feed
/*** Autogenerated by Thrift Compiler (0.7.0)** DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING*/package in.shop2020.alert;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 org.slf4j.Logger;import org.slf4j.LoggerFactory;public class EntityMonitoringStatus implements org.apache.thrift.TBase<EntityMonitoringStatus, EntityMonitoringStatus._Fields>, java.io.Serializable, Cloneable {private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("EntityMonitoringStatus");private static final org.apache.thrift.protocol.TField ENTITY_TYPE_FIELD_DESC = new org.apache.thrift.protocol.TField("entityType", org.apache.thrift.protocol.TType.I32, (short)1);private static final org.apache.thrift.protocol.TField IS_ACTIVE_FIELD_DESC = new org.apache.thrift.protocol.TField("isActive", org.apache.thrift.protocol.TType.BOOL, (short)2);private static final org.apache.thrift.protocol.TField USER_IDS_FIELD_DESC = new org.apache.thrift.protocol.TField("userIds", org.apache.thrift.protocol.TType.STRING, (short)3);private EntityType entityType; // requiredprivate boolean isActive; // requiredprivate String userIds; // 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 {/**** @see EntityType*/ENTITY_TYPE((short)1, "entityType"),IS_ACTIVE((short)2, "isActive"),USER_IDS((short)3, "userIds");private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();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: // ENTITY_TYPEreturn ENTITY_TYPE;case 2: // IS_ACTIVEreturn IS_ACTIVE;case 3: // USER_IDSreturn USER_IDS;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 assignmentsprivate static final int __ISACTIVE_ISSET_ID = 0;private BitSet __isset_bit_vector = new BitSet(1);public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;static {Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);tmpMap.put(_Fields.ENTITY_TYPE, new org.apache.thrift.meta_data.FieldMetaData("entityType", org.apache.thrift.TFieldRequirementType.DEFAULT,new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, EntityType.class)));tmpMap.put(_Fields.IS_ACTIVE, new org.apache.thrift.meta_data.FieldMetaData("isActive", org.apache.thrift.TFieldRequirementType.DEFAULT,new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)));tmpMap.put(_Fields.USER_IDS, new org.apache.thrift.meta_data.FieldMetaData("userIds", org.apache.thrift.TFieldRequirementType.DEFAULT,new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));metaDataMap = Collections.unmodifiableMap(tmpMap);org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(EntityMonitoringStatus.class, metaDataMap);}public EntityMonitoringStatus() {}public EntityMonitoringStatus(EntityType entityType,boolean isActive,String userIds){this();this.entityType = entityType;this.isActive = isActive;setIsActiveIsSet(true);this.userIds = userIds;}/*** Performs a deep copy on <i>other</i>.*/public EntityMonitoringStatus(EntityMonitoringStatus other) {__isset_bit_vector.clear();__isset_bit_vector.or(other.__isset_bit_vector);if (other.isSetEntityType()) {this.entityType = other.entityType;}this.isActive = other.isActive;if (other.isSetUserIds()) {this.userIds = other.userIds;}}public EntityMonitoringStatus deepCopy() {return new EntityMonitoringStatus(this);}@Overridepublic void clear() {this.entityType = null;setIsActiveIsSet(false);this.isActive = false;this.userIds = null;}/**** @see EntityType*/public EntityType getEntityType() {return this.entityType;}/**** @see EntityType*/public void setEntityType(EntityType entityType) {this.entityType = entityType;}public void unsetEntityType() {this.entityType = null;}/** Returns true if field entityType is set (has been assigned a value) and false otherwise */public boolean isSetEntityType() {return this.entityType != null;}public void setEntityTypeIsSet(boolean value) {if (!value) {this.entityType = null;}}public boolean isIsActive() {return this.isActive;}public void setIsActive(boolean isActive) {this.isActive = isActive;setIsActiveIsSet(true);}public void unsetIsActive() {__isset_bit_vector.clear(__ISACTIVE_ISSET_ID);}/** Returns true if field isActive is set (has been assigned a value) and false otherwise */public boolean isSetIsActive() {return __isset_bit_vector.get(__ISACTIVE_ISSET_ID);}public void setIsActiveIsSet(boolean value) {__isset_bit_vector.set(__ISACTIVE_ISSET_ID, value);}public String getUserIds() {return this.userIds;}public void setUserIds(String userIds) {this.userIds = userIds;}public void unsetUserIds() {this.userIds = null;}/** Returns true if field userIds is set (has been assigned a value) and false otherwise */public boolean isSetUserIds() {return this.userIds != null;}public void setUserIdsIsSet(boolean value) {if (!value) {this.userIds = null;}}public void setFieldValue(_Fields field, Object value) {switch (field) {case ENTITY_TYPE:if (value == null) {unsetEntityType();} else {setEntityType((EntityType)value);}break;case IS_ACTIVE:if (value == null) {unsetIsActive();} else {setIsActive((Boolean)value);}break;case USER_IDS:if (value == null) {unsetUserIds();} else {setUserIds((String)value);}break;}}public Object getFieldValue(_Fields field) {switch (field) {case ENTITY_TYPE:return getEntityType();case IS_ACTIVE:return Boolean.valueOf(isIsActive());case USER_IDS:return getUserIds();}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 ENTITY_TYPE:return isSetEntityType();case IS_ACTIVE:return isSetIsActive();case USER_IDS:return isSetUserIds();}throw new IllegalStateException();}@Overridepublic boolean equals(Object that) {if (that == null)return false;if (that instanceof EntityMonitoringStatus)return this.equals((EntityMonitoringStatus)that);return false;}public boolean equals(EntityMonitoringStatus that) {if (that == null)return false;boolean this_present_entityType = true && this.isSetEntityType();boolean that_present_entityType = true && that.isSetEntityType();if (this_present_entityType || that_present_entityType) {if (!(this_present_entityType && that_present_entityType))return false;if (!this.entityType.equals(that.entityType))return false;}boolean this_present_isActive = true;boolean that_present_isActive = true;if (this_present_isActive || that_present_isActive) {if (!(this_present_isActive && that_present_isActive))return false;if (this.isActive != that.isActive)return false;}boolean this_present_userIds = true && this.isSetUserIds();boolean that_present_userIds = true && that.isSetUserIds();if (this_present_userIds || that_present_userIds) {if (!(this_present_userIds && that_present_userIds))return false;if (!this.userIds.equals(that.userIds))return false;}return true;}@Overridepublic int hashCode() {return 0;}public int compareTo(EntityMonitoringStatus other) {if (!getClass().equals(other.getClass())) {return getClass().getName().compareTo(other.getClass().getName());}int lastComparison = 0;EntityMonitoringStatus typedOther = (EntityMonitoringStatus)other;lastComparison = Boolean.valueOf(isSetEntityType()).compareTo(typedOther.isSetEntityType());if (lastComparison != 0) {return lastComparison;}if (isSetEntityType()) {lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.entityType, typedOther.entityType);if (lastComparison != 0) {return lastComparison;}}lastComparison = Boolean.valueOf(isSetIsActive()).compareTo(typedOther.isSetIsActive());if (lastComparison != 0) {return lastComparison;}if (isSetIsActive()) {lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.isActive, typedOther.isActive);if (lastComparison != 0) {return lastComparison;}}lastComparison = Boolean.valueOf(isSetUserIds()).compareTo(typedOther.isSetUserIds());if (lastComparison != 0) {return lastComparison;}if (isSetUserIds()) {lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.userIds, typedOther.userIds);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 {org.apache.thrift.protocol.TField field;iprot.readStructBegin();while (true){field = iprot.readFieldBegin();if (field.type == org.apache.thrift.protocol.TType.STOP) {break;}switch (field.id) {case 1: // ENTITY_TYPEif (field.type == org.apache.thrift.protocol.TType.I32) {this.entityType = EntityType.findByValue(iprot.readI32());} else {org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);}break;case 2: // IS_ACTIVEif (field.type == org.apache.thrift.protocol.TType.BOOL) {this.isActive = iprot.readBool();setIsActiveIsSet(true);} else {org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);}break;case 3: // USER_IDSif (field.type == org.apache.thrift.protocol.TType.STRING) {this.userIds = iprot.readString();} else {org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);}break;default:org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);}iprot.readFieldEnd();}iprot.readStructEnd();validate();}public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {validate();oprot.writeStructBegin(STRUCT_DESC);if (this.entityType != null) {oprot.writeFieldBegin(ENTITY_TYPE_FIELD_DESC);oprot.writeI32(this.entityType.getValue());oprot.writeFieldEnd();}oprot.writeFieldBegin(IS_ACTIVE_FIELD_DESC);oprot.writeBool(this.isActive);oprot.writeFieldEnd();if (this.userIds != null) {oprot.writeFieldBegin(USER_IDS_FIELD_DESC);oprot.writeString(this.userIds);oprot.writeFieldEnd();}oprot.writeFieldStop();oprot.writeStructEnd();}@Overridepublic String toString() {StringBuilder sb = new StringBuilder("EntityMonitoringStatus(");boolean first = true;sb.append("entityType:");if (this.entityType == null) {sb.append("null");} else {sb.append(this.entityType);}first = false;if (!first) sb.append(", ");sb.append("isActive:");sb.append(this.isActive);first = false;if (!first) sb.append(", ");sb.append("userIds:");if (this.userIds == null) {sb.append("null");} else {sb.append(this.userIds);}first = false;sb.append(")");return sb.toString();}public void validate() throws org.apache.thrift.TException {// check for required fields}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, ClassNotFoundException {try {// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.__isset_bit_vector = new BitSet(1);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);}}}