org.thriftee.examples.usergroup.domain.User Maven / Gradle / Ivy
/**
* Autogenerated by Thrift Compiler (1.0.0-dev)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.thriftee.examples.usergroup.domain;
import org.apache.thrift.scheme.IScheme;
import org.apache.thrift.scheme.SchemeFactory;
import org.apache.thrift.scheme.StandardScheme;
import org.apache.thrift.scheme.TupleScheme;
import org.apache.thrift.protocol.TTupleProtocol;
import org.apache.thrift.protocol.TProtocolException;
import org.apache.thrift.EncodingUtils;
import org.apache.thrift.TException;
import org.apache.thrift.async.AsyncMethodCallback;
import org.apache.thrift.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", "unused"})
@Generated(value = "Autogenerated by Thrift Compiler (1.0.0-dev)", date = "2016-02-10")
public class User 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("User");
private static final org.apache.thrift.protocol.TField UID_FIELD_DESC = new org.apache.thrift.protocol.TField("uid", org.apache.thrift.protocol.TType.STRING, (short)1);
private static final org.apache.thrift.protocol.TField FIRST_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("firstName", org.apache.thrift.protocol.TType.STRING, (short)2);
private static final org.apache.thrift.protocol.TField LAST_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("lastName", org.apache.thrift.protocol.TType.STRING, (short)3);
private static final org.apache.thrift.protocol.TField DISPLAY_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("displayName", org.apache.thrift.protocol.TType.STRING, (short)4);
private static final org.apache.thrift.protocol.TField EMAIL_FIELD_DESC = new org.apache.thrift.protocol.TField("email", org.apache.thrift.protocol.TType.STRING, (short)5);
private static final SchemeFactory STANDARD_SCHEME_FACTORY = new UserStandardSchemeFactory();
private static final SchemeFactory TUPLE_SCHEME_FACTORY = new UserTupleSchemeFactory();
public String uid; // required
public String firstName; // required
public String lastName; // required
public String displayName; // required
public String email; // 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 {
UID((short)1, "uid"),
FIRST_NAME((short)2, "firstName"),
LAST_NAME((short)3, "lastName"),
DISPLAY_NAME((short)4, "displayName"),
EMAIL((short)5, "email");
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: // UID
return UID;
case 2: // FIRST_NAME
return FIRST_NAME;
case 3: // LAST_NAME
return LAST_NAME;
case 4: // DISPLAY_NAME
return DISPLAY_NAME;
case 5: // EMAIL
return EMAIL;
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
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.UID, new org.apache.thrift.meta_data.FieldMetaData("uid", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.FIRST_NAME, new org.apache.thrift.meta_data.FieldMetaData("firstName", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.LAST_NAME, new org.apache.thrift.meta_data.FieldMetaData("lastName", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.DISPLAY_NAME, new org.apache.thrift.meta_data.FieldMetaData("displayName", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.EMAIL, new org.apache.thrift.meta_data.FieldMetaData("email", 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(User.class, metaDataMap);
}
public User() {
}
public User(
String uid,
String firstName,
String lastName,
String displayName,
String email)
{
this();
this.uid = uid;
this.firstName = firstName;
this.lastName = lastName;
this.displayName = displayName;
this.email = email;
}
/**
* Performs a deep copy on other.
*/
public User(User other) {
if (other.isSetUid()) {
this.uid = other.uid;
}
if (other.isSetFirstName()) {
this.firstName = other.firstName;
}
if (other.isSetLastName()) {
this.lastName = other.lastName;
}
if (other.isSetDisplayName()) {
this.displayName = other.displayName;
}
if (other.isSetEmail()) {
this.email = other.email;
}
}
public User deepCopy() {
return new User(this);
}
@Override
public void clear() {
this.uid = null;
this.firstName = null;
this.lastName = null;
this.displayName = null;
this.email = null;
}
public String getUid() {
return this.uid;
}
public User setUid(String uid) {
this.uid = uid;
return this;
}
public void unsetUid() {
this.uid = null;
}
/** Returns true if field uid is set (has been assigned a value) and false otherwise */
public boolean isSetUid() {
return this.uid != null;
}
public void setUidIsSet(boolean value) {
if (!value) {
this.uid = null;
}
}
public String getFirstName() {
return this.firstName;
}
public User setFirstName(String firstName) {
this.firstName = firstName;
return this;
}
public void unsetFirstName() {
this.firstName = null;
}
/** Returns true if field firstName is set (has been assigned a value) and false otherwise */
public boolean isSetFirstName() {
return this.firstName != null;
}
public void setFirstNameIsSet(boolean value) {
if (!value) {
this.firstName = null;
}
}
public String getLastName() {
return this.lastName;
}
public User setLastName(String lastName) {
this.lastName = lastName;
return this;
}
public void unsetLastName() {
this.lastName = null;
}
/** Returns true if field lastName is set (has been assigned a value) and false otherwise */
public boolean isSetLastName() {
return this.lastName != null;
}
public void setLastNameIsSet(boolean value) {
if (!value) {
this.lastName = null;
}
}
public String getDisplayName() {
return this.displayName;
}
public User setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public void unsetDisplayName() {
this.displayName = null;
}
/** Returns true if field displayName is set (has been assigned a value) and false otherwise */
public boolean isSetDisplayName() {
return this.displayName != null;
}
public void setDisplayNameIsSet(boolean value) {
if (!value) {
this.displayName = null;
}
}
public String getEmail() {
return this.email;
}
public User setEmail(String email) {
this.email = email;
return this;
}
public void unsetEmail() {
this.email = null;
}
/** Returns true if field email is set (has been assigned a value) and false otherwise */
public boolean isSetEmail() {
return this.email != null;
}
public void setEmailIsSet(boolean value) {
if (!value) {
this.email = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case UID:
if (value == null) {
unsetUid();
} else {
setUid((String)value);
}
break;
case FIRST_NAME:
if (value == null) {
unsetFirstName();
} else {
setFirstName((String)value);
}
break;
case LAST_NAME:
if (value == null) {
unsetLastName();
} else {
setLastName((String)value);
}
break;
case DISPLAY_NAME:
if (value == null) {
unsetDisplayName();
} else {
setDisplayName((String)value);
}
break;
case EMAIL:
if (value == null) {
unsetEmail();
} else {
setEmail((String)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case UID:
return getUid();
case FIRST_NAME:
return getFirstName();
case LAST_NAME:
return getLastName();
case DISPLAY_NAME:
return getDisplayName();
case EMAIL:
return getEmail();
}
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 UID:
return isSetUid();
case FIRST_NAME:
return isSetFirstName();
case LAST_NAME:
return isSetLastName();
case DISPLAY_NAME:
return isSetDisplayName();
case EMAIL:
return isSetEmail();
}
throw new IllegalStateException();
}
@Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof User)
return this.equals((User)that);
return false;
}
public boolean equals(User that) {
if (that == null)
return false;
boolean this_present_uid = true && this.isSetUid();
boolean that_present_uid = true && that.isSetUid();
if (this_present_uid || that_present_uid) {
if (!(this_present_uid && that_present_uid))
return false;
if (!this.uid.equals(that.uid))
return false;
}
boolean this_present_firstName = true && this.isSetFirstName();
boolean that_present_firstName = true && that.isSetFirstName();
if (this_present_firstName || that_present_firstName) {
if (!(this_present_firstName && that_present_firstName))
return false;
if (!this.firstName.equals(that.firstName))
return false;
}
boolean this_present_lastName = true && this.isSetLastName();
boolean that_present_lastName = true && that.isSetLastName();
if (this_present_lastName || that_present_lastName) {
if (!(this_present_lastName && that_present_lastName))
return false;
if (!this.lastName.equals(that.lastName))
return false;
}
boolean this_present_displayName = true && this.isSetDisplayName();
boolean that_present_displayName = true && that.isSetDisplayName();
if (this_present_displayName || that_present_displayName) {
if (!(this_present_displayName && that_present_displayName))
return false;
if (!this.displayName.equals(that.displayName))
return false;
}
boolean this_present_email = true && this.isSetEmail();
boolean that_present_email = true && that.isSetEmail();
if (this_present_email || that_present_email) {
if (!(this_present_email && that_present_email))
return false;
if (!this.email.equals(that.email))
return false;
}
return true;
}
@Override
public int hashCode() {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy