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.
/**
* 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"})
public class Resource extends org.apache.thrift.TUnion {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("Resource");
private static final org.apache.thrift.protocol.TField BANK_CARD_FIELD_DESC = new org.apache.thrift.protocol.TField("bank_card", org.apache.thrift.protocol.TType.STRUCT, (short)1);
private static final org.apache.thrift.protocol.TField CRYPTO_WALLET_FIELD_DESC = new org.apache.thrift.protocol.TField("crypto_wallet", org.apache.thrift.protocol.TType.STRUCT, (short)2);
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
BANK_CARD((short)1, "bank_card"),
CRYPTO_WALLET((short)2, "crypto_wallet");
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: // BANK_CARD
return BANK_CARD;
case 2: // CRYPTO_WALLET
return CRYPTO_WALLET;
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;
}
}
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.BANK_CARD, new org.apache.thrift.meta_data.FieldMetaData("bank_card", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.rbkmoney.damsel.domain.BankCard.class)));
tmpMap.put(_Fields.CRYPTO_WALLET, new org.apache.thrift.meta_data.FieldMetaData("crypto_wallet", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, CryptoWallet.class)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(Resource.class, metaDataMap);
}
public Resource() {
super();
}
public Resource(_Fields setField, Object value) {
super(setField, value);
}
public Resource(Resource other) {
super(other);
}
public Resource deepCopy() {
return new Resource(this);
}
public static Resource bank_card(com.rbkmoney.damsel.domain.BankCard value) {
Resource x = new Resource();
x.setBankCard(value);
return x;
}
public static Resource crypto_wallet(CryptoWallet value) {
Resource x = new Resource();
x.setCryptoWallet(value);
return x;
}
@Override
protected void checkType(_Fields setField, Object value) throws ClassCastException {
switch (setField) {
case BANK_CARD:
if (value instanceof com.rbkmoney.damsel.domain.BankCard) {
break;
}
throw new ClassCastException("Was expecting value of type com.rbkmoney.damsel.domain.BankCard for field 'bank_card', but got " + value.getClass().getSimpleName());
case CRYPTO_WALLET:
if (value instanceof CryptoWallet) {
break;
}
throw new ClassCastException("Was expecting value of type CryptoWallet for field 'crypto_wallet', but got " + value.getClass().getSimpleName());
default:
throw new IllegalArgumentException("Unknown field id " + setField);
}
}
@Override
protected Object standardSchemeReadValue(org.apache.thrift.protocol.TProtocol iprot, org.apache.thrift.protocol.TField field) throws org.apache.thrift.TException {
_Fields setField = _Fields.findByThriftId(field.id);
if (setField != null) {
switch (setField) {
case BANK_CARD:
if (field.type == BANK_CARD_FIELD_DESC.type) {
com.rbkmoney.damsel.domain.BankCard bank_card;
bank_card = new com.rbkmoney.damsel.domain.BankCard();
bank_card.read(iprot);
return bank_card;
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
return null;
}
case CRYPTO_WALLET:
if (field.type == CRYPTO_WALLET_FIELD_DESC.type) {
CryptoWallet crypto_wallet;
crypto_wallet = new CryptoWallet();
crypto_wallet.read(iprot);
return crypto_wallet;
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
return null;
}
default:
throw new IllegalStateException("setField wasn't null, but didn't match any of the case statements!");
}
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
return null;
}
}
@Override
protected void standardSchemeWriteValue(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
switch (setField_) {
case BANK_CARD:
com.rbkmoney.damsel.domain.BankCard bank_card = (com.rbkmoney.damsel.domain.BankCard)value_;
bank_card.write(oprot);
return;
case CRYPTO_WALLET:
CryptoWallet crypto_wallet = (CryptoWallet)value_;
crypto_wallet.write(oprot);
return;
default:
throw new IllegalStateException("Cannot write union with unknown field " + setField_);
}
}
@Override
protected Object tupleSchemeReadValue(org.apache.thrift.protocol.TProtocol iprot, short fieldID) throws org.apache.thrift.TException {
_Fields setField = _Fields.findByThriftId(fieldID);
if (setField != null) {
switch (setField) {
case BANK_CARD:
com.rbkmoney.damsel.domain.BankCard bank_card;
bank_card = new com.rbkmoney.damsel.domain.BankCard();
bank_card.read(iprot);
return bank_card;
case CRYPTO_WALLET:
CryptoWallet crypto_wallet;
crypto_wallet = new CryptoWallet();
crypto_wallet.read(iprot);
return crypto_wallet;
default:
throw new IllegalStateException("setField wasn't null, but didn't match any of the case statements!");
}
} else {
throw new TProtocolException("Couldn't find a field with field id " + fieldID);
}
}
@Override
protected void tupleSchemeWriteValue(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
switch (setField_) {
case BANK_CARD:
com.rbkmoney.damsel.domain.BankCard bank_card = (com.rbkmoney.damsel.domain.BankCard)value_;
bank_card.write(oprot);
return;
case CRYPTO_WALLET:
CryptoWallet crypto_wallet = (CryptoWallet)value_;
crypto_wallet.write(oprot);
return;
default:
throw new IllegalStateException("Cannot write union with unknown field " + setField_);
}
}
@Override
protected org.apache.thrift.protocol.TField getFieldDesc(_Fields setField) {
switch (setField) {
case BANK_CARD:
return BANK_CARD_FIELD_DESC;
case CRYPTO_WALLET:
return CRYPTO_WALLET_FIELD_DESC;
default:
throw new IllegalArgumentException("Unknown field id " + setField);
}
}
@Override
protected org.apache.thrift.protocol.TStruct getStructDesc() {
return STRUCT_DESC;
}
@Override
protected _Fields enumForId(short id) {
return _Fields.findByThriftIdOrThrow(id);
}
public _Fields[] getFields() {
return _Fields.values();
}
public Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> getFieldMetaData() {
return metaDataMap;
}
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public com.rbkmoney.damsel.domain.BankCard getBankCard() {
if (getSetField() == _Fields.BANK_CARD) {
return (com.rbkmoney.damsel.domain.BankCard)getFieldValue();
} else {
throw new RuntimeException("Cannot get field 'bank_card' because union is currently set to " + getFieldDesc(getSetField()).name);
}
}
public void setBankCard(com.rbkmoney.damsel.domain.BankCard value) {
if (value == null) throw new NullPointerException();
setField_ = _Fields.BANK_CARD;
value_ = value;
}
public CryptoWallet getCryptoWallet() {
if (getSetField() == _Fields.CRYPTO_WALLET) {
return (CryptoWallet)getFieldValue();
} else {
throw new RuntimeException("Cannot get field 'crypto_wallet' because union is currently set to " + getFieldDesc(getSetField()).name);
}
}
public void setCryptoWallet(CryptoWallet value) {
if (value == null) throw new NullPointerException();
setField_ = _Fields.CRYPTO_WALLET;
value_ = value;
}
public boolean isSetBankCard() {
return setField_ == _Fields.BANK_CARD;
}
public boolean isSetCryptoWallet() {
return setField_ == _Fields.CRYPTO_WALLET;
}
public boolean equals(Object other) {
if (other instanceof Resource) {
return equals((Resource)other);
} else {
return false;
}
}
public boolean equals(Resource other) {
return other != null && getSetField() == other.getSetField() && getFieldValue().equals(other.getFieldValue());
}
@Override
public int compareTo(Resource other) {
int lastComparison = org.apache.thrift.TBaseHelper.compareTo(getSetField(), other.getSetField());
if (lastComparison == 0) {
return org.apache.thrift.TBaseHelper.compareTo(getFieldValue(), other.getFieldValue());
}
return lastComparison;
}
@Override
public int hashCode() {
List