All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rbkmoney.damsel.fraudbusters.EmulationRuleApplyRequest Maven / Gradle / Ivy

Go to download

Generates jar artifact containing compiled thrift classes based on generated thrift IDL files

There is a newer version: 1.99-2a8f6ca
Show newest version
/**
 * 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 = "2021-10-14")
public class EmulationRuleApplyRequest 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("EmulationRuleApplyRequest");

  private static final org.apache.thrift.protocol.TField EMULATION_RULE_FIELD_DESC = new org.apache.thrift.protocol.TField("emulation_rule", org.apache.thrift.protocol.TType.STRUCT, (short)1);
  private static final org.apache.thrift.protocol.TField TRANSACTIONS_FIELD_DESC = new org.apache.thrift.protocol.TField("transactions", org.apache.thrift.protocol.TType.SET, (short)2);

  private static final SchemeFactory STANDARD_SCHEME_FACTORY = new EmulationRuleApplyRequestStandardSchemeFactory();
  private static final SchemeFactory TUPLE_SCHEME_FACTORY = new EmulationRuleApplyRequestTupleSchemeFactory();

  public EmulationRule emulation_rule; // required
  public Set transactions; // 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 {
    EMULATION_RULE((short)1, "emulation_rule"),
    TRANSACTIONS((short)2, "transactions");

    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: // EMULATION_RULE
          return EMULATION_RULE;
        case 2: // TRANSACTIONS
          return TRANSACTIONS;
        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.EMULATION_RULE, new org.apache.thrift.meta_data.FieldMetaData("emulation_rule", org.apache.thrift.TFieldRequirementType.REQUIRED, 
        new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, EmulationRule.class)));
    tmpMap.put(_Fields.TRANSACTIONS, new org.apache.thrift.meta_data.FieldMetaData("transactions", org.apache.thrift.TFieldRequirementType.REQUIRED, 
        new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, 
            new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, Payment.class))));
    metaDataMap = Collections.unmodifiableMap(tmpMap);
    org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(EmulationRuleApplyRequest.class, metaDataMap);
  }

  public EmulationRuleApplyRequest() {
  }

  public EmulationRuleApplyRequest(
    EmulationRule emulation_rule,
    Set transactions)
  {
    this();
    this.emulation_rule = emulation_rule;
    this.transactions = transactions;
  }

  /**
   * Performs a deep copy on other.
   */
  public EmulationRuleApplyRequest(EmulationRuleApplyRequest other) {
    if (other.isSetEmulationRule()) {
      this.emulation_rule = new EmulationRule(other.emulation_rule);
    }
    if (other.isSetTransactions()) {
      Set __this__transactions = new HashSet(other.transactions.size());
      for (Payment other_element : other.transactions) {
        __this__transactions.add(new Payment(other_element));
      }
      this.transactions = __this__transactions;
    }
  }

  public EmulationRuleApplyRequest deepCopy() {
    return new EmulationRuleApplyRequest(this);
  }

  @Override
  public void clear() {
    this.emulation_rule = null;
    this.transactions = null;
  }

  public EmulationRule getEmulationRule() {
    return this.emulation_rule;
  }

  public EmulationRuleApplyRequest setEmulationRule(EmulationRule emulation_rule) {
    this.emulation_rule = emulation_rule;
    return this;
  }

  public void unsetEmulationRule() {
    this.emulation_rule = null;
  }

  /** Returns true if field emulation_rule is set (has been assigned a value) and false otherwise */
  public boolean isSetEmulationRule() {
    return this.emulation_rule != null;
  }

  public void setEmulationRuleIsSet(boolean value) {
    if (!value) {
      this.emulation_rule = null;
    }
  }

  public int getTransactionsSize() {
    return (this.transactions == null) ? 0 : this.transactions.size();
  }

  public java.util.Iterator getTransactionsIterator() {
    return (this.transactions == null) ? null : this.transactions.iterator();
  }

  public void addToTransactions(Payment elem) {
    if (this.transactions == null) {
      this.transactions = new HashSet();
    }
    this.transactions.add(elem);
  }

  public Set getTransactions() {
    return this.transactions;
  }

  public EmulationRuleApplyRequest setTransactions(Set transactions) {
    this.transactions = transactions;
    return this;
  }

  public void unsetTransactions() {
    this.transactions = null;
  }

  /** Returns true if field transactions is set (has been assigned a value) and false otherwise */
  public boolean isSetTransactions() {
    return this.transactions != null;
  }

  public void setTransactionsIsSet(boolean value) {
    if (!value) {
      this.transactions = null;
    }
  }

  public void setFieldValue(_Fields field, Object value) {
    switch (field) {
    case EMULATION_RULE:
      if (value == null) {
        unsetEmulationRule();
      } else {
        setEmulationRule((EmulationRule)value);
      }
      break;

    case TRANSACTIONS:
      if (value == null) {
        unsetTransactions();
      } else {
        setTransactions((Set)value);
      }
      break;

    }
  }

  public Object getFieldValue(_Fields field) {
    switch (field) {
    case EMULATION_RULE:
      return getEmulationRule();

    case TRANSACTIONS:
      return getTransactions();

    }
    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 EMULATION_RULE:
      return isSetEmulationRule();
    case TRANSACTIONS:
      return isSetTransactions();
    }
    throw new IllegalStateException();
  }

  @Override
  public boolean equals(Object that) {
    if (that == null)
      return false;
    if (that instanceof EmulationRuleApplyRequest)
      return this.equals((EmulationRuleApplyRequest)that);
    return false;
  }

  public boolean equals(EmulationRuleApplyRequest that) {
    if (that == null)
      return false;

    boolean this_present_emulation_rule = true && this.isSetEmulationRule();
    boolean that_present_emulation_rule = true && that.isSetEmulationRule();
    if (this_present_emulation_rule || that_present_emulation_rule) {
      if (!(this_present_emulation_rule && that_present_emulation_rule))
        return false;
      if (!this.emulation_rule.equals(that.emulation_rule))
        return false;
    }

    boolean this_present_transactions = true && this.isSetTransactions();
    boolean that_present_transactions = true && that.isSetTransactions();
    if (this_present_transactions || that_present_transactions) {
      if (!(this_present_transactions && that_present_transactions))
        return false;
      if (!this.transactions.equals(that.transactions))
        return false;
    }

    return true;
  }

  @Override
  public int hashCode() {
    int hashCode = 1;

    hashCode = hashCode * 8191 + ((isSetEmulationRule()) ? 131071 : 524287);
    if (isSetEmulationRule())
      hashCode = hashCode * 8191 + emulation_rule.hashCode();

    hashCode = hashCode * 8191 + ((isSetTransactions()) ? 131071 : 524287);
    if (isSetTransactions())
      hashCode = hashCode * 8191 + transactions.hashCode();

    return hashCode;
  }

  @Override
  public int compareTo(EmulationRuleApplyRequest other) {
    if (!getClass().equals(other.getClass())) {
      return getClass().getName().compareTo(other.getClass().getName());
    }

    int lastComparison = 0;

    lastComparison = Boolean.valueOf(isSetEmulationRule()).compareTo(other.isSetEmulationRule());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetEmulationRule()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.emulation_rule, other.emulation_rule);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetTransactions()).compareTo(other.isSetTransactions());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetTransactions()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transactions, other.transactions);
      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("EmulationRuleApplyRequest(");
    boolean first = true;

    sb.append("emulation_rule:");
    if (this.emulation_rule == null) {
      sb.append("null");
    } else {
      sb.append(this.emulation_rule);
    }
    first = false;
    if (!first) sb.append(", ");
    sb.append("transactions:");
    if (this.transactions == null) {
      sb.append("null");
    } else {
      sb.append(this.transactions);
    }
    first = false;
    sb.append(")");
    return sb.toString();
  }

  public void validate() throws org.apache.thrift.TException {
    // check for required fields
    if (emulation_rule == null) {
      throw new org.apache.thrift.protocol.TProtocolException("Required field 'emulation_rule' was not present! Struct: " + toString());
    }
    if (transactions == null) {
      throw new org.apache.thrift.protocol.TProtocolException("Required field 'transactions' was not present! Struct: " + toString());
    }
    // 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 EmulationRuleApplyRequestStandardSchemeFactory implements SchemeFactory {
    public EmulationRuleApplyRequestStandardScheme getScheme() {
      return new EmulationRuleApplyRequestStandardScheme();
    }
  }

  private static class EmulationRuleApplyRequestStandardScheme extends StandardScheme {

    public void read(org.apache.thrift.protocol.TProtocol iprot, EmulationRuleApplyRequest 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: // EMULATION_RULE
            if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
              struct.emulation_rule = new EmulationRule();
              struct.emulation_rule.read(iprot);
              struct.setEmulationRuleIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 2: // TRANSACTIONS
            if (schemeField.type == org.apache.thrift.protocol.TType.SET) {
              {
                org.apache.thrift.protocol.TSet _set24 = iprot.readSetBegin();
                struct.transactions = new HashSet(2*_set24.size);
                Payment _elem25;
                for (int _i26 = 0; _i26 < _set24.size; ++_i26)
                {
                  _elem25 = new Payment();
                  _elem25.read(iprot);
                  struct.transactions.add(_elem25);
                }
                iprot.readSetEnd();
              }
              struct.setTransactionsIsSet(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, EmulationRuleApplyRequest struct) throws org.apache.thrift.TException {
      struct.validate();

      oprot.writeStructBegin(STRUCT_DESC);
      if (struct.emulation_rule != null) {
        oprot.writeFieldBegin(EMULATION_RULE_FIELD_DESC);
        struct.emulation_rule.write(oprot);
        oprot.writeFieldEnd();
      }
      if (struct.transactions != null) {
        oprot.writeFieldBegin(TRANSACTIONS_FIELD_DESC);
        {
          oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, struct.transactions.size()));
          for (Payment _iter27 : struct.transactions)
          {
            _iter27.write(oprot);
          }
          oprot.writeSetEnd();
        }
        oprot.writeFieldEnd();
      }
      oprot.writeFieldStop();
      oprot.writeStructEnd();
    }

  }

  private static class EmulationRuleApplyRequestTupleSchemeFactory implements SchemeFactory {
    public EmulationRuleApplyRequestTupleScheme getScheme() {
      return new EmulationRuleApplyRequestTupleScheme();
    }
  }

  private static class EmulationRuleApplyRequestTupleScheme extends TupleScheme {

    @Override
    public void write(org.apache.thrift.protocol.TProtocol prot, EmulationRuleApplyRequest struct) throws org.apache.thrift.TException {
      TTupleProtocol oprot = (TTupleProtocol) prot;
      struct.emulation_rule.write(oprot);
      {
        oprot.writeI32(struct.transactions.size());
        for (Payment _iter28 : struct.transactions)
        {
          _iter28.write(oprot);
        }
      }
    }

    @Override
    public void read(org.apache.thrift.protocol.TProtocol prot, EmulationRuleApplyRequest struct) throws org.apache.thrift.TException {
      TTupleProtocol iprot = (TTupleProtocol) prot;
      struct.emulation_rule = new EmulationRule();
      struct.emulation_rule.read(iprot);
      struct.setEmulationRuleIsSet(true);
      {
        org.apache.thrift.protocol.TSet _set29 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
        struct.transactions = new HashSet(2*_set29.size);
        Payment _elem30;
        for (int _i31 = 0; _i31 < _set29.size; ++_i31)
        {
          _elem30 = new Payment();
          _elem30.read(iprot);
          struct.transactions.add(_elem30);
        }
      }
      struct.setTransactionsIsSet(true);
    }
  }

  private static  S scheme(org.apache.thrift.protocol.TProtocol proto) {
    return (StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy