com.rbkmoney.damsel.fraudbusters.ClientInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fraudbusters-proto Show documentation
Show all versions of fraudbusters-proto Show documentation
Generates jar artifact containing compiled thrift classes based on generated thrift IDL files
/**
* Autogenerated by Thrift Compiler (1.0.0-dev)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package com.rbkmoney.damsel.fraudbusters;
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.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 = "2020-07-08")
public class ClientInfo 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("ClientInfo");
private static final org.apache.thrift.protocol.TField IP_FIELD_DESC = new org.apache.thrift.protocol.TField("ip", org.apache.thrift.protocol.TType.STRING, (short)1);
private static final org.apache.thrift.protocol.TField FINGERPRINT_FIELD_DESC = new org.apache.thrift.protocol.TField("fingerprint", org.apache.thrift.protocol.TType.STRING, (short)2);
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)3);
private static final SchemeFactory STANDARD_SCHEME_FACTORY = new ClientInfoStandardSchemeFactory();
private static final SchemeFactory TUPLE_SCHEME_FACTORY = new ClientInfoTupleSchemeFactory();
public String ip; // optional
public String fingerprint; // optional
public String email; // optional
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
IP((short)1, "ip"),
FINGERPRINT((short)2, "fingerprint"),
EMAIL((short)3, "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: // IP
return IP;
case 2: // FINGERPRINT
return FINGERPRINT;
case 3: // 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
private static final _Fields optionals[] = {_Fields.IP,_Fields.FINGERPRINT,_Fields.EMAIL};
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.IP, new org.apache.thrift.meta_data.FieldMetaData("ip", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.FINGERPRINT, new org.apache.thrift.meta_data.FieldMetaData("fingerprint", org.apache.thrift.TFieldRequirementType.OPTIONAL,
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.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(ClientInfo.class, metaDataMap);
}
public ClientInfo() {
}
/**
* Performs a deep copy on other.
*/
public ClientInfo(ClientInfo other) {
if (other.isSetIp()) {
this.ip = other.ip;
}
if (other.isSetFingerprint()) {
this.fingerprint = other.fingerprint;
}
if (other.isSetEmail()) {
this.email = other.email;
}
}
public ClientInfo deepCopy() {
return new ClientInfo(this);
}
@Override
public void clear() {
this.ip = null;
this.fingerprint = null;
this.email = null;
}
public String getIp() {
return this.ip;
}
public ClientInfo setIp(String ip) {
this.ip = ip;
return this;
}
public void unsetIp() {
this.ip = null;
}
/** Returns true if field ip is set (has been assigned a value) and false otherwise */
public boolean isSetIp() {
return this.ip != null;
}
public void setIpIsSet(boolean value) {
if (!value) {
this.ip = null;
}
}
public String getFingerprint() {
return this.fingerprint;
}
public ClientInfo setFingerprint(String fingerprint) {
this.fingerprint = fingerprint;
return this;
}
public void unsetFingerprint() {
this.fingerprint = null;
}
/** Returns true if field fingerprint is set (has been assigned a value) and false otherwise */
public boolean isSetFingerprint() {
return this.fingerprint != null;
}
public void setFingerprintIsSet(boolean value) {
if (!value) {
this.fingerprint = null;
}
}
public String getEmail() {
return this.email;
}
public ClientInfo 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 IP:
if (value == null) {
unsetIp();
} else {
setIp((String)value);
}
break;
case FINGERPRINT:
if (value == null) {
unsetFingerprint();
} else {
setFingerprint((String)value);
}
break;
case EMAIL:
if (value == null) {
unsetEmail();
} else {
setEmail((String)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case IP:
return getIp();
case FINGERPRINT:
return getFingerprint();
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 IP:
return isSetIp();
case FINGERPRINT:
return isSetFingerprint();
case EMAIL:
return isSetEmail();
}
throw new IllegalStateException();
}
@Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof ClientInfo)
return this.equals((ClientInfo)that);
return false;
}
public boolean equals(ClientInfo that) {
if (that == null)
return false;
boolean this_present_ip = true && this.isSetIp();
boolean that_present_ip = true && that.isSetIp();
if (this_present_ip || that_present_ip) {
if (!(this_present_ip && that_present_ip))
return false;
if (!this.ip.equals(that.ip))
return false;
}
boolean this_present_fingerprint = true && this.isSetFingerprint();
boolean that_present_fingerprint = true && that.isSetFingerprint();
if (this_present_fingerprint || that_present_fingerprint) {
if (!(this_present_fingerprint && that_present_fingerprint))
return false;
if (!this.fingerprint.equals(that.fingerprint))
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() {
int hashCode = 1;
hashCode = hashCode * 8191 + ((isSetIp()) ? 131071 : 524287);
if (isSetIp())
hashCode = hashCode * 8191 + ip.hashCode();
hashCode = hashCode * 8191 + ((isSetFingerprint()) ? 131071 : 524287);
if (isSetFingerprint())
hashCode = hashCode * 8191 + fingerprint.hashCode();
hashCode = hashCode * 8191 + ((isSetEmail()) ? 131071 : 524287);
if (isSetEmail())
hashCode = hashCode * 8191 + email.hashCode();
return hashCode;
}
@Override
public int compareTo(ClientInfo other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
lastComparison = Boolean.valueOf(isSetIp()).compareTo(other.isSetIp());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetIp()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ip, other.ip);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = Boolean.valueOf(isSetFingerprint()).compareTo(other.isSetFingerprint());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetFingerprint()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.fingerprint, other.fingerprint);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = Boolean.valueOf(isSetEmail()).compareTo(other.isSetEmail());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetEmail()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.email, other.email);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public _Fields[] getFields() {
return _Fields.values();
}
public Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> getFieldMetaData() {
return metaDataMap;
}
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 String toString() {
StringBuilder sb = new StringBuilder("ClientInfo(");
boolean first = true;
if (isSetIp()) {
sb.append("ip:");
if (this.ip == null) {
sb.append("null");
} else {
sb.append(this.ip);
}
first = false;
}
if (isSetFingerprint()) {
if (!first) sb.append(", ");
sb.append("fingerprint:");
if (this.fingerprint == null) {
sb.append("null");
} else {
sb.append(this.fingerprint);
}
first = false;
}
if (isSetEmail()) {
if (!first) sb.append(", ");
sb.append("email:");
if (this.email == null) {
sb.append("null");
} else {
sb.append(this.email);
}
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, 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 ClientInfoStandardSchemeFactory implements SchemeFactory {
public ClientInfoStandardScheme getScheme() {
return new ClientInfoStandardScheme();
}
}
private static class ClientInfoStandardScheme extends StandardScheme {
public void read(org.apache.thrift.protocol.TProtocol iprot, ClientInfo 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: // IP
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.ip = iprot.readString();
struct.setIpIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 2: // FINGERPRINT
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.fingerprint = iprot.readString();
struct.setFingerprintIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 3: // EMAIL
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.email = iprot.readString();
struct.setEmailIsSet(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, ClientInfo struct) throws org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
if (struct.ip != null) {
if (struct.isSetIp()) {
oprot.writeFieldBegin(IP_FIELD_DESC);
oprot.writeString(struct.ip);
oprot.writeFieldEnd();
}
}
if (struct.fingerprint != null) {
if (struct.isSetFingerprint()) {
oprot.writeFieldBegin(FINGERPRINT_FIELD_DESC);
oprot.writeString(struct.fingerprint);
oprot.writeFieldEnd();
}
}
if (struct.email != null) {
if (struct.isSetEmail()) {
oprot.writeFieldBegin(EMAIL_FIELD_DESC);
oprot.writeString(struct.email);
oprot.writeFieldEnd();
}
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
}
private static class ClientInfoTupleSchemeFactory implements SchemeFactory {
public ClientInfoTupleScheme getScheme() {
return new ClientInfoTupleScheme();
}
}
private static class ClientInfoTupleScheme extends TupleScheme {
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, ClientInfo struct) throws org.apache.thrift.TException {
TTupleProtocol oprot = (TTupleProtocol) prot;
BitSet optionals = new BitSet();
if (struct.isSetIp()) {
optionals.set(0);
}
if (struct.isSetFingerprint()) {
optionals.set(1);
}
if (struct.isSetEmail()) {
optionals.set(2);
}
oprot.writeBitSet(optionals, 3);
if (struct.isSetIp()) {
oprot.writeString(struct.ip);
}
if (struct.isSetFingerprint()) {
oprot.writeString(struct.fingerprint);
}
if (struct.isSetEmail()) {
oprot.writeString(struct.email);
}
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, ClientInfo struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
struct.ip = iprot.readString();
struct.setIpIsSet(true);
}
if (incoming.get(1)) {
struct.fingerprint = iprot.readString();
struct.setFingerprintIsSet(true);
}
if (incoming.get(2)) {
struct.email = iprot.readString();
struct.setEmailIsSet(true);
}
}
}
private static S scheme(org.apache.thrift.protocol.TProtocol proto) {
return (StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
}
}