Subversion Repositories SmartDukaan

Rev

Rev 4788 | Rev 4815 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4788 Rev 4801
Line 36... Line 36...
36
 
36
 
37
    public boolean changeTransactionStatus(long transactionId, TransactionStatus status, String description) throws TransactionServiceException, org.apache.thrift.TException;
37
    public boolean changeTransactionStatus(long transactionId, TransactionStatus status, String description) throws TransactionServiceException, org.apache.thrift.TException;
38
 
38
 
39
    public boolean enqueueTransactionInfoEmail(long transactionId) throws TransactionServiceException, org.apache.thrift.TException;
39
    public boolean enqueueTransactionInfoEmail(long transactionId) throws TransactionServiceException, org.apache.thrift.TException;
40
 
40
 
41
    public List<Order> getAllOrders(OrderStatus status, long from_date, long to_date, long warehouse_id) throws TransactionServiceException, org.apache.thrift.TException;
41
    public List<Order> getAllOrders(List<OrderStatus> statuses, long from_date, long to_date, long warehouse_id) throws TransactionServiceException, org.apache.thrift.TException;
42
 
42
 
43
    /**
43
    /**
44
     * Returns at most 'limit' orders with the given statuses for the given warehouse starting from the given offset.
44
     * Returns at most 'limit' orders with the given statuses for the given warehouse starting from the given offset.
45
     * Pass the status as null and the limit as 0 to ignore them.
45
     * Pass the status as null and the limit as 0 to ignore them.
46
     * 
46
     * 
Line 731... Line 731...
731
 
731
 
732
    public void changeTransactionStatus(long transactionId, TransactionStatus status, String description, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.changeTransactionStatus_call> resultHandler) throws org.apache.thrift.TException;
732
    public void changeTransactionStatus(long transactionId, TransactionStatus status, String description, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.changeTransactionStatus_call> resultHandler) throws org.apache.thrift.TException;
733
 
733
 
734
    public void enqueueTransactionInfoEmail(long transactionId, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.enqueueTransactionInfoEmail_call> resultHandler) throws org.apache.thrift.TException;
734
    public void enqueueTransactionInfoEmail(long transactionId, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.enqueueTransactionInfoEmail_call> resultHandler) throws org.apache.thrift.TException;
735
 
735
 
736
    public void getAllOrders(OrderStatus status, long from_date, long to_date, long warehouse_id, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getAllOrders_call> resultHandler) throws org.apache.thrift.TException;
736
    public void getAllOrders(List<OrderStatus> statuses, long from_date, long to_date, long warehouse_id, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getAllOrders_call> resultHandler) throws org.apache.thrift.TException;
737
 
737
 
738
    public void getOrdersInBatch(List<OrderStatus> statuses, long offset, long limit, long warehouse_id, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getOrdersInBatch_call> resultHandler) throws org.apache.thrift.TException;
738
    public void getOrdersInBatch(List<OrderStatus> statuses, long offset, long limit, long warehouse_id, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getOrdersInBatch_call> resultHandler) throws org.apache.thrift.TException;
739
 
739
 
740
    public void getOrderCount(List<OrderStatus> statuses, long warehouseId, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getOrderCount_call> resultHandler) throws org.apache.thrift.TException;
740
    public void getOrderCount(List<OrderStatus> statuses, long warehouseId, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getOrderCount_call> resultHandler) throws org.apache.thrift.TException;
741
 
741
 
Line 1118... Line 1118...
1118
        throw result.ex;
1118
        throw result.ex;
1119
      }
1119
      }
1120
      throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "enqueueTransactionInfoEmail failed: unknown result");
1120
      throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "enqueueTransactionInfoEmail failed: unknown result");
1121
    }
1121
    }
1122
 
1122
 
1123
    public List<Order> getAllOrders(OrderStatus status, long from_date, long to_date, long warehouse_id) throws TransactionServiceException, org.apache.thrift.TException
1123
    public List<Order> getAllOrders(List<OrderStatus> statuses, long from_date, long to_date, long warehouse_id) throws TransactionServiceException, org.apache.thrift.TException
1124
    {
1124
    {
1125
      send_getAllOrders(status, from_date, to_date, warehouse_id);
1125
      send_getAllOrders(statuses, from_date, to_date, warehouse_id);
1126
      return recv_getAllOrders();
1126
      return recv_getAllOrders();
1127
    }
1127
    }
1128
 
1128
 
1129
    public void send_getAllOrders(OrderStatus status, long from_date, long to_date, long warehouse_id) throws org.apache.thrift.TException
1129
    public void send_getAllOrders(List<OrderStatus> statuses, long from_date, long to_date, long warehouse_id) throws org.apache.thrift.TException
1130
    {
1130
    {
1131
      getAllOrders_args args = new getAllOrders_args();
1131
      getAllOrders_args args = new getAllOrders_args();
1132
      args.setStatus(status);
1132
      args.setStatuses(statuses);
1133
      args.setFrom_date(from_date);
1133
      args.setFrom_date(from_date);
1134
      args.setTo_date(to_date);
1134
      args.setTo_date(to_date);
1135
      args.setWarehouse_id(warehouse_id);
1135
      args.setWarehouse_id(warehouse_id);
1136
      sendBase("getAllOrders", args);
1136
      sendBase("getAllOrders", args);
1137
    }
1137
    }
Line 3675... Line 3675...
3675
        org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
3675
        org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
3676
        return (new Client(prot)).recv_enqueueTransactionInfoEmail();
3676
        return (new Client(prot)).recv_enqueueTransactionInfoEmail();
3677
      }
3677
      }
3678
    }
3678
    }
3679
 
3679
 
3680
    public void getAllOrders(OrderStatus status, long from_date, long to_date, long warehouse_id, org.apache.thrift.async.AsyncMethodCallback<getAllOrders_call> resultHandler) throws org.apache.thrift.TException {
3680
    public void getAllOrders(List<OrderStatus> statuses, long from_date, long to_date, long warehouse_id, org.apache.thrift.async.AsyncMethodCallback<getAllOrders_call> resultHandler) throws org.apache.thrift.TException {
3681
      checkReady();
3681
      checkReady();
3682
      getAllOrders_call method_call = new getAllOrders_call(status, from_date, to_date, warehouse_id, resultHandler, this, ___protocolFactory, ___transport);
3682
      getAllOrders_call method_call = new getAllOrders_call(statuses, from_date, to_date, warehouse_id, resultHandler, this, ___protocolFactory, ___transport);
3683
      this.___currentMethod = method_call;
3683
      this.___currentMethod = method_call;
3684
      ___manager.call(method_call);
3684
      ___manager.call(method_call);
3685
    }
3685
    }
3686
 
3686
 
3687
    public static class getAllOrders_call extends org.apache.thrift.async.TAsyncMethodCall {
3687
    public static class getAllOrders_call extends org.apache.thrift.async.TAsyncMethodCall {
3688
      private OrderStatus status;
3688
      private List<OrderStatus> statuses;
3689
      private long from_date;
3689
      private long from_date;
3690
      private long to_date;
3690
      private long to_date;
3691
      private long warehouse_id;
3691
      private long warehouse_id;
3692
      public getAllOrders_call(OrderStatus status, long from_date, long to_date, long warehouse_id, org.apache.thrift.async.AsyncMethodCallback<getAllOrders_call> resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
3692
      public getAllOrders_call(List<OrderStatus> statuses, long from_date, long to_date, long warehouse_id, org.apache.thrift.async.AsyncMethodCallback<getAllOrders_call> resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
3693
        super(client, protocolFactory, transport, resultHandler, false);
3693
        super(client, protocolFactory, transport, resultHandler, false);
3694
        this.status = status;
3694
        this.statuses = statuses;
3695
        this.from_date = from_date;
3695
        this.from_date = from_date;
3696
        this.to_date = to_date;
3696
        this.to_date = to_date;
3697
        this.warehouse_id = warehouse_id;
3697
        this.warehouse_id = warehouse_id;
3698
      }
3698
      }
3699
 
3699
 
3700
      public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
3700
      public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
3701
        prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getAllOrders", org.apache.thrift.protocol.TMessageType.CALL, 0));
3701
        prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getAllOrders", org.apache.thrift.protocol.TMessageType.CALL, 0));
3702
        getAllOrders_args args = new getAllOrders_args();
3702
        getAllOrders_args args = new getAllOrders_args();
3703
        args.setStatus(status);
3703
        args.setStatuses(statuses);
3704
        args.setFrom_date(from_date);
3704
        args.setFrom_date(from_date);
3705
        args.setTo_date(to_date);
3705
        args.setTo_date(to_date);
3706
        args.setWarehouse_id(warehouse_id);
3706
        args.setWarehouse_id(warehouse_id);
3707
        args.write(prot);
3707
        args.write(prot);
3708
        prot.writeMessageEnd();
3708
        prot.writeMessageEnd();
Line 7090... Line 7090...
7090
      }
7090
      }
7091
 
7091
 
7092
      protected getAllOrders_result getResult(I iface, getAllOrders_args args) throws org.apache.thrift.TException {
7092
      protected getAllOrders_result getResult(I iface, getAllOrders_args args) throws org.apache.thrift.TException {
7093
        getAllOrders_result result = new getAllOrders_result();
7093
        getAllOrders_result result = new getAllOrders_result();
7094
        try {
7094
        try {
7095
          result.success = iface.getAllOrders(args.status, args.from_date, args.to_date, args.warehouse_id);
7095
          result.success = iface.getAllOrders(args.statuses, args.from_date, args.to_date, args.warehouse_id);
7096
        } catch (TransactionServiceException ex) {
7096
        } catch (TransactionServiceException ex) {
7097
          result.ex = ex;
7097
          result.ex = ex;
7098
        }
7098
        }
7099
        return result;
7099
        return result;
7100
      }
7100
      }
Line 14095... Line 14095...
14095
  }
14095
  }
14096
 
14096
 
14097
  public static class getAllOrders_args implements org.apache.thrift.TBase<getAllOrders_args, getAllOrders_args._Fields>, java.io.Serializable, Cloneable   {
14097
  public static class getAllOrders_args implements org.apache.thrift.TBase<getAllOrders_args, getAllOrders_args._Fields>, java.io.Serializable, Cloneable   {
14098
    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getAllOrders_args");
14098
    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getAllOrders_args");
14099
 
14099
 
14100
    private static final org.apache.thrift.protocol.TField STATUS_FIELD_DESC = new org.apache.thrift.protocol.TField("status", org.apache.thrift.protocol.TType.I32, (short)1);
14100
    private static final org.apache.thrift.protocol.TField STATUSES_FIELD_DESC = new org.apache.thrift.protocol.TField("statuses", org.apache.thrift.protocol.TType.LIST, (short)1);
14101
    private static final org.apache.thrift.protocol.TField FROM_DATE_FIELD_DESC = new org.apache.thrift.protocol.TField("from_date", org.apache.thrift.protocol.TType.I64, (short)2);
14101
    private static final org.apache.thrift.protocol.TField FROM_DATE_FIELD_DESC = new org.apache.thrift.protocol.TField("from_date", org.apache.thrift.protocol.TType.I64, (short)2);
14102
    private static final org.apache.thrift.protocol.TField TO_DATE_FIELD_DESC = new org.apache.thrift.protocol.TField("to_date", org.apache.thrift.protocol.TType.I64, (short)3);
14102
    private static final org.apache.thrift.protocol.TField TO_DATE_FIELD_DESC = new org.apache.thrift.protocol.TField("to_date", org.apache.thrift.protocol.TType.I64, (short)3);
14103
    private static final org.apache.thrift.protocol.TField WAREHOUSE_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("warehouse_id", org.apache.thrift.protocol.TType.I64, (short)4);
14103
    private static final org.apache.thrift.protocol.TField WAREHOUSE_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("warehouse_id", org.apache.thrift.protocol.TType.I64, (short)4);
14104
 
14104
 
14105
    private OrderStatus status; // required
14105
    private List<OrderStatus> statuses; // required
14106
    private long from_date; // required
14106
    private long from_date; // required
14107
    private long to_date; // required
14107
    private long to_date; // required
14108
    private long warehouse_id; // required
14108
    private long warehouse_id; // required
14109
 
14109
 
14110
    /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
14110
    /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
14111
    public enum _Fields implements org.apache.thrift.TFieldIdEnum {
14111
    public enum _Fields implements org.apache.thrift.TFieldIdEnum {
14112
      /**
-
 
14113
       * 
-
 
14114
       * @see OrderStatus
-
 
14115
       */
-
 
14116
      STATUS((short)1, "status"),
14112
      STATUSES((short)1, "statuses"),
14117
      FROM_DATE((short)2, "from_date"),
14113
      FROM_DATE((short)2, "from_date"),
14118
      TO_DATE((short)3, "to_date"),
14114
      TO_DATE((short)3, "to_date"),
14119
      WAREHOUSE_ID((short)4, "warehouse_id");
14115
      WAREHOUSE_ID((short)4, "warehouse_id");
14120
 
14116
 
14121
      private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
14117
      private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
Line 14129... Line 14125...
14129
      /**
14125
      /**
14130
       * Find the _Fields constant that matches fieldId, or null if its not found.
14126
       * Find the _Fields constant that matches fieldId, or null if its not found.
14131
       */
14127
       */
14132
      public static _Fields findByThriftId(int fieldId) {
14128
      public static _Fields findByThriftId(int fieldId) {
14133
        switch(fieldId) {
14129
        switch(fieldId) {
14134
          case 1: // STATUS
14130
          case 1: // STATUSES
14135
            return STATUS;
14131
            return STATUSES;
14136
          case 2: // FROM_DATE
14132
          case 2: // FROM_DATE
14137
            return FROM_DATE;
14133
            return FROM_DATE;
14138
          case 3: // TO_DATE
14134
          case 3: // TO_DATE
14139
            return TO_DATE;
14135
            return TO_DATE;
14140
          case 4: // WAREHOUSE_ID
14136
          case 4: // WAREHOUSE_ID
Line 14185... Line 14181...
14185
    private BitSet __isset_bit_vector = new BitSet(3);
14181
    private BitSet __isset_bit_vector = new BitSet(3);
14186
 
14182
 
14187
    public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
14183
    public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
14188
    static {
14184
    static {
14189
      Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
14185
      Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
14190
      tmpMap.put(_Fields.STATUS, new org.apache.thrift.meta_data.FieldMetaData("status", org.apache.thrift.TFieldRequirementType.DEFAULT, 
14186
      tmpMap.put(_Fields.STATUSES, new org.apache.thrift.meta_data.FieldMetaData("statuses", org.apache.thrift.TFieldRequirementType.DEFAULT, 
-
 
14187
          new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, 
14191
          new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, OrderStatus.class)));
14188
              new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, OrderStatus.class))));
14192
      tmpMap.put(_Fields.FROM_DATE, new org.apache.thrift.meta_data.FieldMetaData("from_date", org.apache.thrift.TFieldRequirementType.DEFAULT, 
14189
      tmpMap.put(_Fields.FROM_DATE, new org.apache.thrift.meta_data.FieldMetaData("from_date", org.apache.thrift.TFieldRequirementType.DEFAULT, 
14193
          new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
14190
          new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
14194
      tmpMap.put(_Fields.TO_DATE, new org.apache.thrift.meta_data.FieldMetaData("to_date", org.apache.thrift.TFieldRequirementType.DEFAULT, 
14191
      tmpMap.put(_Fields.TO_DATE, new org.apache.thrift.meta_data.FieldMetaData("to_date", org.apache.thrift.TFieldRequirementType.DEFAULT, 
14195
          new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
14192
          new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
14196
      tmpMap.put(_Fields.WAREHOUSE_ID, new org.apache.thrift.meta_data.FieldMetaData("warehouse_id", org.apache.thrift.TFieldRequirementType.DEFAULT, 
14193
      tmpMap.put(_Fields.WAREHOUSE_ID, new org.apache.thrift.meta_data.FieldMetaData("warehouse_id", org.apache.thrift.TFieldRequirementType.DEFAULT, 
Line 14201... Line 14198...
14201
 
14198
 
14202
    public getAllOrders_args() {
14199
    public getAllOrders_args() {
14203
    }
14200
    }
14204
 
14201
 
14205
    public getAllOrders_args(
14202
    public getAllOrders_args(
14206
      OrderStatus status,
14203
      List<OrderStatus> statuses,
14207
      long from_date,
14204
      long from_date,
14208
      long to_date,
14205
      long to_date,
14209
      long warehouse_id)
14206
      long warehouse_id)
14210
    {
14207
    {
14211
      this();
14208
      this();
14212
      this.status = status;
14209
      this.statuses = statuses;
14213
      this.from_date = from_date;
14210
      this.from_date = from_date;
14214
      setFrom_dateIsSet(true);
14211
      setFrom_dateIsSet(true);
14215
      this.to_date = to_date;
14212
      this.to_date = to_date;
14216
      setTo_dateIsSet(true);
14213
      setTo_dateIsSet(true);
14217
      this.warehouse_id = warehouse_id;
14214
      this.warehouse_id = warehouse_id;
Line 14222... Line 14219...
14222
     * Performs a deep copy on <i>other</i>.
14219
     * Performs a deep copy on <i>other</i>.
14223
     */
14220
     */
14224
    public getAllOrders_args(getAllOrders_args other) {
14221
    public getAllOrders_args(getAllOrders_args other) {
14225
      __isset_bit_vector.clear();
14222
      __isset_bit_vector.clear();
14226
      __isset_bit_vector.or(other.__isset_bit_vector);
14223
      __isset_bit_vector.or(other.__isset_bit_vector);
14227
      if (other.isSetStatus()) {
14224
      if (other.isSetStatuses()) {
-
 
14225
        List<OrderStatus> __this__statuses = new ArrayList<OrderStatus>();
-
 
14226
        for (OrderStatus other_element : other.statuses) {
-
 
14227
          __this__statuses.add(other_element);
-
 
14228
        }
14228
        this.status = other.status;
14229
        this.statuses = __this__statuses;
14229
      }
14230
      }
14230
      this.from_date = other.from_date;
14231
      this.from_date = other.from_date;
14231
      this.to_date = other.to_date;
14232
      this.to_date = other.to_date;
14232
      this.warehouse_id = other.warehouse_id;
14233
      this.warehouse_id = other.warehouse_id;
14233
    }
14234
    }
Line 14236... Line 14237...
14236
      return new getAllOrders_args(this);
14237
      return new getAllOrders_args(this);
14237
    }
14238
    }
14238
 
14239
 
14239
    @Override
14240
    @Override
14240
    public void clear() {
14241
    public void clear() {
14241
      this.status = null;
14242
      this.statuses = null;
14242
      setFrom_dateIsSet(false);
14243
      setFrom_dateIsSet(false);
14243
      this.from_date = 0;
14244
      this.from_date = 0;
14244
      setTo_dateIsSet(false);
14245
      setTo_dateIsSet(false);
14245
      this.to_date = 0;
14246
      this.to_date = 0;
14246
      setWarehouse_idIsSet(false);
14247
      setWarehouse_idIsSet(false);
14247
      this.warehouse_id = 0;
14248
      this.warehouse_id = 0;
14248
    }
14249
    }
14249
 
14250
 
14250
    /**
-
 
14251
     * 
-
 
14252
     * @see OrderStatus
-
 
14253
     */
-
 
14254
    public OrderStatus getStatus() {
14251
    public int getStatusesSize() {
14255
      return this.status;
14252
      return (this.statuses == null) ? 0 : this.statuses.size();
14256
    }
14253
    }
14257
 
14254
 
14258
    /**
-
 
14259
     * 
-
 
14260
     * @see OrderStatus
-
 
14261
     */
-
 
14262
    public void setStatus(OrderStatus status) {
14255
    public java.util.Iterator<OrderStatus> getStatusesIterator() {
14263
      this.status = status;
14256
      return (this.statuses == null) ? null : this.statuses.iterator();
14264
    }
14257
    }
14265
 
14258
 
14266
    public void unsetStatus() {
14259
    public void addToStatuses(OrderStatus elem) {
14267
      this.status = null;
14260
      if (this.statuses == null) {
-
 
14261
        this.statuses = new ArrayList<OrderStatus>();
-
 
14262
      }
-
 
14263
      this.statuses.add(elem);
14268
    }
14264
    }
14269
 
14265
 
14270
    /** Returns true if field status is set (has been assigned a value) and false otherwise */
-
 
14271
    public boolean isSetStatus() {
14266
    public List<OrderStatus> getStatuses() {
14272
      return this.status != null;
14267
      return this.statuses;
14273
    }
14268
    }
14274
 
14269
 
-
 
14270
    public void setStatuses(List<OrderStatus> statuses) {
-
 
14271
      this.statuses = statuses;
-
 
14272
    }
-
 
14273
 
-
 
14274
    public void unsetStatuses() {
-
 
14275
      this.statuses = null;
-
 
14276
    }
-
 
14277
 
-
 
14278
    /** Returns true if field statuses is set (has been assigned a value) and false otherwise */
-
 
14279
    public boolean isSetStatuses() {
-
 
14280
      return this.statuses != null;
-
 
14281
    }
-
 
14282
 
14275
    public void setStatusIsSet(boolean value) {
14283
    public void setStatusesIsSet(boolean value) {
14276
      if (!value) {
14284
      if (!value) {
14277
        this.status = null;
14285
        this.statuses = null;
14278
      }
14286
      }
14279
    }
14287
    }
14280
 
14288
 
14281
    public long getFrom_date() {
14289
    public long getFrom_date() {
14282
      return this.from_date;
14290
      return this.from_date;
Line 14344... Line 14352...
14344
      __isset_bit_vector.set(__WAREHOUSE_ID_ISSET_ID, value);
14352
      __isset_bit_vector.set(__WAREHOUSE_ID_ISSET_ID, value);
14345
    }
14353
    }
14346
 
14354
 
14347
    public void setFieldValue(_Fields field, Object value) {
14355
    public void setFieldValue(_Fields field, Object value) {
14348
      switch (field) {
14356
      switch (field) {
14349
      case STATUS:
14357
      case STATUSES:
14350
        if (value == null) {
14358
        if (value == null) {
14351
          unsetStatus();
14359
          unsetStatuses();
14352
        } else {
14360
        } else {
14353
          setStatus((OrderStatus)value);
14361
          setStatuses((List<OrderStatus>)value);
14354
        }
14362
        }
14355
        break;
14363
        break;
14356
 
14364
 
14357
      case FROM_DATE:
14365
      case FROM_DATE:
14358
        if (value == null) {
14366
        if (value == null) {
Line 14381... Line 14389...
14381
      }
14389
      }
14382
    }
14390
    }
14383
 
14391
 
14384
    public Object getFieldValue(_Fields field) {
14392
    public Object getFieldValue(_Fields field) {
14385
      switch (field) {
14393
      switch (field) {
14386
      case STATUS:
14394
      case STATUSES:
14387
        return getStatus();
14395
        return getStatuses();
14388
 
14396
 
14389
      case FROM_DATE:
14397
      case FROM_DATE:
14390
        return Long.valueOf(getFrom_date());
14398
        return Long.valueOf(getFrom_date());
14391
 
14399
 
14392
      case TO_DATE:
14400
      case TO_DATE:
Line 14404... Line 14412...
14404
      if (field == null) {
14412
      if (field == null) {
14405
        throw new IllegalArgumentException();
14413
        throw new IllegalArgumentException();
14406
      }
14414
      }
14407
 
14415
 
14408
      switch (field) {
14416
      switch (field) {
14409
      case STATUS:
14417
      case STATUSES:
14410
        return isSetStatus();
14418
        return isSetStatuses();
14411
      case FROM_DATE:
14419
      case FROM_DATE:
14412
        return isSetFrom_date();
14420
        return isSetFrom_date();
14413
      case TO_DATE:
14421
      case TO_DATE:
14414
        return isSetTo_date();
14422
        return isSetTo_date();
14415
      case WAREHOUSE_ID:
14423
      case WAREHOUSE_ID:
Line 14429... Line 14437...
14429
 
14437
 
14430
    public boolean equals(getAllOrders_args that) {
14438
    public boolean equals(getAllOrders_args that) {
14431
      if (that == null)
14439
      if (that == null)
14432
        return false;
14440
        return false;
14433
 
14441
 
14434
      boolean this_present_status = true && this.isSetStatus();
14442
      boolean this_present_statuses = true && this.isSetStatuses();
14435
      boolean that_present_status = true && that.isSetStatus();
14443
      boolean that_present_statuses = true && that.isSetStatuses();
14436
      if (this_present_status || that_present_status) {
14444
      if (this_present_statuses || that_present_statuses) {
14437
        if (!(this_present_status && that_present_status))
14445
        if (!(this_present_statuses && that_present_statuses))
14438
          return false;
14446
          return false;
14439
        if (!this.status.equals(that.status))
14447
        if (!this.statuses.equals(that.statuses))
14440
          return false;
14448
          return false;
14441
      }
14449
      }
14442
 
14450
 
14443
      boolean this_present_from_date = true;
14451
      boolean this_present_from_date = true;
14444
      boolean that_present_from_date = true;
14452
      boolean that_present_from_date = true;
Line 14481... Line 14489...
14481
      }
14489
      }
14482
 
14490
 
14483
      int lastComparison = 0;
14491
      int lastComparison = 0;
14484
      getAllOrders_args typedOther = (getAllOrders_args)other;
14492
      getAllOrders_args typedOther = (getAllOrders_args)other;
14485
 
14493
 
14486
      lastComparison = Boolean.valueOf(isSetStatus()).compareTo(typedOther.isSetStatus());
14494
      lastComparison = Boolean.valueOf(isSetStatuses()).compareTo(typedOther.isSetStatuses());
14487
      if (lastComparison != 0) {
14495
      if (lastComparison != 0) {
14488
        return lastComparison;
14496
        return lastComparison;
14489
      }
14497
      }
14490
      if (isSetStatus()) {
14498
      if (isSetStatuses()) {
14491
        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.status, typedOther.status);
14499
        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.statuses, typedOther.statuses);
14492
        if (lastComparison != 0) {
14500
        if (lastComparison != 0) {
14493
          return lastComparison;
14501
          return lastComparison;
14494
        }
14502
        }
14495
      }
14503
      }
14496
      lastComparison = Boolean.valueOf(isSetFrom_date()).compareTo(typedOther.isSetFrom_date());
14504
      lastComparison = Boolean.valueOf(isSetFrom_date()).compareTo(typedOther.isSetFrom_date());
Line 14538... Line 14546...
14538
        field = iprot.readFieldBegin();
14546
        field = iprot.readFieldBegin();
14539
        if (field.type == org.apache.thrift.protocol.TType.STOP) { 
14547
        if (field.type == org.apache.thrift.protocol.TType.STOP) { 
14540
          break;
14548
          break;
14541
        }
14549
        }
14542
        switch (field.id) {
14550
        switch (field.id) {
14543
          case 1: // STATUS
14551
          case 1: // STATUSES
14544
            if (field.type == org.apache.thrift.protocol.TType.I32) {
14552
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
-
 
14553
              {
-
 
14554
                org.apache.thrift.protocol.TList _list16 = iprot.readListBegin();
-
 
14555
                this.statuses = new ArrayList<OrderStatus>(_list16.size);
-
 
14556
                for (int _i17 = 0; _i17 < _list16.size; ++_i17)
-
 
14557
                {
-
 
14558
                  OrderStatus _elem18; // required
14545
              this.status = OrderStatus.findByValue(iprot.readI32());
14559
                  _elem18 = OrderStatus.findByValue(iprot.readI32());
-
 
14560
                  this.statuses.add(_elem18);
-
 
14561
                }
-
 
14562
                iprot.readListEnd();
-
 
14563
              }
14546
            } else { 
14564
            } else { 
14547
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
14565
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
14548
            }
14566
            }
14549
            break;
14567
            break;
14550
          case 2: // FROM_DATE
14568
          case 2: // FROM_DATE
Line 14582... Line 14600...
14582
 
14600
 
14583
    public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
14601
    public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
14584
      validate();
14602
      validate();
14585
 
14603
 
14586
      oprot.writeStructBegin(STRUCT_DESC);
14604
      oprot.writeStructBegin(STRUCT_DESC);
14587
      if (this.status != null) {
14605
      if (this.statuses != null) {
14588
        oprot.writeFieldBegin(STATUS_FIELD_DESC);
14606
        oprot.writeFieldBegin(STATUSES_FIELD_DESC);
-
 
14607
        {
-
 
14608
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, this.statuses.size()));
-
 
14609
          for (OrderStatus _iter19 : this.statuses)
-
 
14610
          {
14589
        oprot.writeI32(this.status.getValue());
14611
            oprot.writeI32(_iter19.getValue());
-
 
14612
          }
-
 
14613
          oprot.writeListEnd();
-
 
14614
        }
14590
        oprot.writeFieldEnd();
14615
        oprot.writeFieldEnd();
14591
      }
14616
      }
14592
      oprot.writeFieldBegin(FROM_DATE_FIELD_DESC);
14617
      oprot.writeFieldBegin(FROM_DATE_FIELD_DESC);
14593
      oprot.writeI64(this.from_date);
14618
      oprot.writeI64(this.from_date);
14594
      oprot.writeFieldEnd();
14619
      oprot.writeFieldEnd();
Line 14605... Line 14630...
14605
    @Override
14630
    @Override
14606
    public String toString() {
14631
    public String toString() {
14607
      StringBuilder sb = new StringBuilder("getAllOrders_args(");
14632
      StringBuilder sb = new StringBuilder("getAllOrders_args(");
14608
      boolean first = true;
14633
      boolean first = true;
14609
 
14634
 
14610
      sb.append("status:");
14635
      sb.append("statuses:");
14611
      if (this.status == null) {
14636
      if (this.statuses == null) {
14612
        sb.append("null");
14637
        sb.append("null");
14613
      } else {
14638
      } else {
14614
        sb.append(this.status);
14639
        sb.append(this.statuses);
14615
      }
14640
      }
14616
      first = false;
14641
      first = false;
14617
      if (!first) sb.append(", ");
14642
      if (!first) sb.append(", ");
14618
      sb.append("from_date:");
14643
      sb.append("from_date:");
14619
      sb.append(this.from_date);
14644
      sb.append(this.from_date);
Line 14970... Line 14995...
14970
        }
14995
        }
14971
        switch (field.id) {
14996
        switch (field.id) {
14972
          case 0: // SUCCESS
14997
          case 0: // SUCCESS
14973
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
14998
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
14974
              {
14999
              {
14975
                org.apache.thrift.protocol.TList _list16 = iprot.readListBegin();
15000
                org.apache.thrift.protocol.TList _list20 = iprot.readListBegin();
14976
                this.success = new ArrayList<Order>(_list16.size);
15001
                this.success = new ArrayList<Order>(_list20.size);
14977
                for (int _i17 = 0; _i17 < _list16.size; ++_i17)
15002
                for (int _i21 = 0; _i21 < _list20.size; ++_i21)
14978
                {
15003
                {
14979
                  Order _elem18; // required
15004
                  Order _elem22; // required
14980
                  _elem18 = new Order();
15005
                  _elem22 = new Order();
14981
                  _elem18.read(iprot);
15006
                  _elem22.read(iprot);
14982
                  this.success.add(_elem18);
15007
                  this.success.add(_elem22);
14983
                }
15008
                }
14984
                iprot.readListEnd();
15009
                iprot.readListEnd();
14985
              }
15010
              }
14986
            } else { 
15011
            } else { 
14987
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
15012
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 15009... Line 15034...
15009
 
15034
 
15010
      if (this.isSetSuccess()) {
15035
      if (this.isSetSuccess()) {
15011
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
15036
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
15012
        {
15037
        {
15013
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
15038
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
15014
          for (Order _iter19 : this.success)
15039
          for (Order _iter23 : this.success)
15015
          {
15040
          {
15016
            _iter19.write(oprot);
15041
            _iter23.write(oprot);
15017
          }
15042
          }
15018
          oprot.writeListEnd();
15043
          oprot.writeListEnd();
15019
        }
15044
        }
15020
        oprot.writeFieldEnd();
15045
        oprot.writeFieldEnd();
15021
      } else if (this.isSetEx()) {
15046
      } else if (this.isSetEx()) {
Line 15528... Line 15553...
15528
        }
15553
        }
15529
        switch (field.id) {
15554
        switch (field.id) {
15530
          case 1: // STATUSES
15555
          case 1: // STATUSES
15531
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
15556
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
15532
              {
15557
              {
15533
                org.apache.thrift.protocol.TList _list20 = iprot.readListBegin();
15558
                org.apache.thrift.protocol.TList _list24 = iprot.readListBegin();
15534
                this.statuses = new ArrayList<OrderStatus>(_list20.size);
15559
                this.statuses = new ArrayList<OrderStatus>(_list24.size);
15535
                for (int _i21 = 0; _i21 < _list20.size; ++_i21)
15560
                for (int _i25 = 0; _i25 < _list24.size; ++_i25)
15536
                {
15561
                {
15537
                  OrderStatus _elem22; // required
15562
                  OrderStatus _elem26; // required
15538
                  _elem22 = OrderStatus.findByValue(iprot.readI32());
15563
                  _elem26 = OrderStatus.findByValue(iprot.readI32());
15539
                  this.statuses.add(_elem22);
15564
                  this.statuses.add(_elem26);
15540
                }
15565
                }
15541
                iprot.readListEnd();
15566
                iprot.readListEnd();
15542
              }
15567
              }
15543
            } else { 
15568
            } else { 
15544
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
15569
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 15583... Line 15608...
15583
      oprot.writeStructBegin(STRUCT_DESC);
15608
      oprot.writeStructBegin(STRUCT_DESC);
15584
      if (this.statuses != null) {
15609
      if (this.statuses != null) {
15585
        oprot.writeFieldBegin(STATUSES_FIELD_DESC);
15610
        oprot.writeFieldBegin(STATUSES_FIELD_DESC);
15586
        {
15611
        {
15587
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, this.statuses.size()));
15612
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, this.statuses.size()));
15588
          for (OrderStatus _iter23 : this.statuses)
15613
          for (OrderStatus _iter27 : this.statuses)
15589
          {
15614
          {
15590
            oprot.writeI32(_iter23.getValue());
15615
            oprot.writeI32(_iter27.getValue());
15591
          }
15616
          }
15592
          oprot.writeListEnd();
15617
          oprot.writeListEnd();
15593
        }
15618
        }
15594
        oprot.writeFieldEnd();
15619
        oprot.writeFieldEnd();
15595
      }
15620
      }
Line 15972... Line 15997...
15972
        }
15997
        }
15973
        switch (field.id) {
15998
        switch (field.id) {
15974
          case 0: // SUCCESS
15999
          case 0: // SUCCESS
15975
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
16000
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
15976
              {
16001
              {
15977
                org.apache.thrift.protocol.TList _list24 = iprot.readListBegin();
16002
                org.apache.thrift.protocol.TList _list28 = iprot.readListBegin();
15978
                this.success = new ArrayList<Order>(_list24.size);
16003
                this.success = new ArrayList<Order>(_list28.size);
15979
                for (int _i25 = 0; _i25 < _list24.size; ++_i25)
16004
                for (int _i29 = 0; _i29 < _list28.size; ++_i29)
15980
                {
16005
                {
15981
                  Order _elem26; // required
16006
                  Order _elem30; // required
15982
                  _elem26 = new Order();
16007
                  _elem30 = new Order();
15983
                  _elem26.read(iprot);
16008
                  _elem30.read(iprot);
15984
                  this.success.add(_elem26);
16009
                  this.success.add(_elem30);
15985
                }
16010
                }
15986
                iprot.readListEnd();
16011
                iprot.readListEnd();
15987
              }
16012
              }
15988
            } else { 
16013
            } else { 
15989
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
16014
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 16011... Line 16036...
16011
 
16036
 
16012
      if (this.isSetSuccess()) {
16037
      if (this.isSetSuccess()) {
16013
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
16038
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
16014
        {
16039
        {
16015
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
16040
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
16016
          for (Order _iter27 : this.success)
16041
          for (Order _iter31 : this.success)
16017
          {
16042
          {
16018
            _iter27.write(oprot);
16043
            _iter31.write(oprot);
16019
          }
16044
          }
16020
          oprot.writeListEnd();
16045
          oprot.writeListEnd();
16021
        }
16046
        }
16022
        oprot.writeFieldEnd();
16047
        oprot.writeFieldEnd();
16023
      } else if (this.isSetEx()) {
16048
      } else if (this.isSetEx()) {
Line 16394... Line 16419...
16394
        }
16419
        }
16395
        switch (field.id) {
16420
        switch (field.id) {
16396
          case 1: // STATUSES
16421
          case 1: // STATUSES
16397
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
16422
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
16398
              {
16423
              {
16399
                org.apache.thrift.protocol.TList _list28 = iprot.readListBegin();
16424
                org.apache.thrift.protocol.TList _list32 = iprot.readListBegin();
16400
                this.statuses = new ArrayList<OrderStatus>(_list28.size);
16425
                this.statuses = new ArrayList<OrderStatus>(_list32.size);
16401
                for (int _i29 = 0; _i29 < _list28.size; ++_i29)
16426
                for (int _i33 = 0; _i33 < _list32.size; ++_i33)
16402
                {
16427
                {
16403
                  OrderStatus _elem30; // required
16428
                  OrderStatus _elem34; // required
16404
                  _elem30 = OrderStatus.findByValue(iprot.readI32());
16429
                  _elem34 = OrderStatus.findByValue(iprot.readI32());
16405
                  this.statuses.add(_elem30);
16430
                  this.statuses.add(_elem34);
16406
                }
16431
                }
16407
                iprot.readListEnd();
16432
                iprot.readListEnd();
16408
              }
16433
              }
16409
            } else { 
16434
            } else { 
16410
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
16435
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 16433... Line 16458...
16433
      oprot.writeStructBegin(STRUCT_DESC);
16458
      oprot.writeStructBegin(STRUCT_DESC);
16434
      if (this.statuses != null) {
16459
      if (this.statuses != null) {
16435
        oprot.writeFieldBegin(STATUSES_FIELD_DESC);
16460
        oprot.writeFieldBegin(STATUSES_FIELD_DESC);
16436
        {
16461
        {
16437
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, this.statuses.size()));
16462
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, this.statuses.size()));
16438
          for (OrderStatus _iter31 : this.statuses)
16463
          for (OrderStatus _iter35 : this.statuses)
16439
          {
16464
          {
16440
            oprot.writeI32(_iter31.getValue());
16465
            oprot.writeI32(_iter35.getValue());
16441
          }
16466
          }
16442
          oprot.writeListEnd();
16467
          oprot.writeListEnd();
16443
        }
16468
        }
16444
        oprot.writeFieldEnd();
16469
        oprot.writeFieldEnd();
16445
      }
16470
      }
Line 17749... Line 17774...
17749
        }
17774
        }
17750
        switch (field.id) {
17775
        switch (field.id) {
17751
          case 0: // SUCCESS
17776
          case 0: // SUCCESS
17752
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
17777
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
17753
              {
17778
              {
17754
                org.apache.thrift.protocol.TList _list32 = iprot.readListBegin();
17779
                org.apache.thrift.protocol.TList _list36 = iprot.readListBegin();
17755
                this.success = new ArrayList<Order>(_list32.size);
17780
                this.success = new ArrayList<Order>(_list36.size);
17756
                for (int _i33 = 0; _i33 < _list32.size; ++_i33)
17781
                for (int _i37 = 0; _i37 < _list36.size; ++_i37)
17757
                {
17782
                {
17758
                  Order _elem34; // required
17783
                  Order _elem38; // required
17759
                  _elem34 = new Order();
17784
                  _elem38 = new Order();
17760
                  _elem34.read(iprot);
17785
                  _elem38.read(iprot);
17761
                  this.success.add(_elem34);
17786
                  this.success.add(_elem38);
17762
                }
17787
                }
17763
                iprot.readListEnd();
17788
                iprot.readListEnd();
17764
              }
17789
              }
17765
            } else { 
17790
            } else { 
17766
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
17791
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 17788... Line 17813...
17788
 
17813
 
17789
      if (this.isSetSuccess()) {
17814
      if (this.isSetSuccess()) {
17790
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
17815
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
17791
        {
17816
        {
17792
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
17817
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
17793
          for (Order _iter35 : this.success)
17818
          for (Order _iter39 : this.success)
17794
          {
17819
          {
17795
            _iter35.write(oprot);
17820
            _iter39.write(oprot);
17796
          }
17821
          }
17797
          oprot.writeListEnd();
17822
          oprot.writeListEnd();
17798
        }
17823
        }
17799
        oprot.writeFieldEnd();
17824
        oprot.writeFieldEnd();
17800
      } else if (this.isSetEx()) {
17825
      } else if (this.isSetEx()) {
Line 18792... Line 18817...
18792
        }
18817
        }
18793
        switch (field.id) {
18818
        switch (field.id) {
18794
          case 0: // SUCCESS
18819
          case 0: // SUCCESS
18795
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
18820
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
18796
              {
18821
              {
18797
                org.apache.thrift.protocol.TList _list36 = iprot.readListBegin();
18822
                org.apache.thrift.protocol.TList _list40 = iprot.readListBegin();
18798
                this.success = new ArrayList<Order>(_list36.size);
18823
                this.success = new ArrayList<Order>(_list40.size);
18799
                for (int _i37 = 0; _i37 < _list36.size; ++_i37)
18824
                for (int _i41 = 0; _i41 < _list40.size; ++_i41)
18800
                {
18825
                {
18801
                  Order _elem38; // required
18826
                  Order _elem42; // required
18802
                  _elem38 = new Order();
18827
                  _elem42 = new Order();
18803
                  _elem38.read(iprot);
18828
                  _elem42.read(iprot);
18804
                  this.success.add(_elem38);
18829
                  this.success.add(_elem42);
18805
                }
18830
                }
18806
                iprot.readListEnd();
18831
                iprot.readListEnd();
18807
              }
18832
              }
18808
            } else { 
18833
            } else { 
18809
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
18834
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 18831... Line 18856...
18831
 
18856
 
18832
      if (this.isSetSuccess()) {
18857
      if (this.isSetSuccess()) {
18833
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
18858
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
18834
        {
18859
        {
18835
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
18860
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
18836
          for (Order _iter39 : this.success)
18861
          for (Order _iter43 : this.success)
18837
          {
18862
          {
18838
            _iter39.write(oprot);
18863
            _iter43.write(oprot);
18839
          }
18864
          }
18840
          oprot.writeListEnd();
18865
          oprot.writeListEnd();
18841
        }
18866
        }
18842
        oprot.writeFieldEnd();
18867
        oprot.writeFieldEnd();
18843
      } else if (this.isSetEx()) {
18868
      } else if (this.isSetEx()) {
Line 19588... Line 19613...
19588
        }
19613
        }
19589
        switch (field.id) {
19614
        switch (field.id) {
19590
          case 0: // SUCCESS
19615
          case 0: // SUCCESS
19591
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
19616
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
19592
              {
19617
              {
19593
                org.apache.thrift.protocol.TList _list40 = iprot.readListBegin();
19618
                org.apache.thrift.protocol.TList _list44 = iprot.readListBegin();
19594
                this.success = new ArrayList<Long>(_list40.size);
19619
                this.success = new ArrayList<Long>(_list44.size);
19595
                for (int _i41 = 0; _i41 < _list40.size; ++_i41)
19620
                for (int _i45 = 0; _i45 < _list44.size; ++_i45)
19596
                {
19621
                {
19597
                  long _elem42; // required
19622
                  long _elem46; // required
19598
                  _elem42 = iprot.readI64();
19623
                  _elem46 = iprot.readI64();
19599
                  this.success.add(_elem42);
19624
                  this.success.add(_elem46);
19600
                }
19625
                }
19601
                iprot.readListEnd();
19626
                iprot.readListEnd();
19602
              }
19627
              }
19603
            } else { 
19628
            } else { 
19604
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
19629
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 19626... Line 19651...
19626
 
19651
 
19627
      if (this.isSetSuccess()) {
19652
      if (this.isSetSuccess()) {
19628
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
19653
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
19629
        {
19654
        {
19630
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
19655
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
19631
          for (long _iter43 : this.success)
19656
          for (long _iter47 : this.success)
19632
          {
19657
          {
19633
            oprot.writeI64(_iter43);
19658
            oprot.writeI64(_iter47);
19634
          }
19659
          }
19635
          oprot.writeListEnd();
19660
          oprot.writeListEnd();
19636
        }
19661
        }
19637
        oprot.writeFieldEnd();
19662
        oprot.writeFieldEnd();
19638
      } else if (this.isSetEx()) {
19663
      } else if (this.isSetEx()) {
Line 20383... Line 20408...
20383
        }
20408
        }
20384
        switch (field.id) {
20409
        switch (field.id) {
20385
          case 0: // SUCCESS
20410
          case 0: // SUCCESS
20386
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
20411
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
20387
              {
20412
              {
20388
                org.apache.thrift.protocol.TList _list44 = iprot.readListBegin();
20413
                org.apache.thrift.protocol.TList _list48 = iprot.readListBegin();
20389
                this.success = new ArrayList<Long>(_list44.size);
20414
                this.success = new ArrayList<Long>(_list48.size);
20390
                for (int _i45 = 0; _i45 < _list44.size; ++_i45)
20415
                for (int _i49 = 0; _i49 < _list48.size; ++_i49)
20391
                {
20416
                {
20392
                  long _elem46; // required
20417
                  long _elem50; // required
20393
                  _elem46 = iprot.readI64();
20418
                  _elem50 = iprot.readI64();
20394
                  this.success.add(_elem46);
20419
                  this.success.add(_elem50);
20395
                }
20420
                }
20396
                iprot.readListEnd();
20421
                iprot.readListEnd();
20397
              }
20422
              }
20398
            } else { 
20423
            } else { 
20399
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
20424
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 20421... Line 20446...
20421
 
20446
 
20422
      if (this.isSetSuccess()) {
20447
      if (this.isSetSuccess()) {
20423
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
20448
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
20424
        {
20449
        {
20425
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
20450
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
20426
          for (long _iter47 : this.success)
20451
          for (long _iter51 : this.success)
20427
          {
20452
          {
20428
            oprot.writeI64(_iter47);
20453
            oprot.writeI64(_iter51);
20429
          }
20454
          }
20430
          oprot.writeListEnd();
20455
          oprot.writeListEnd();
20431
        }
20456
        }
20432
        oprot.writeFieldEnd();
20457
        oprot.writeFieldEnd();
20433
      } else if (this.isSetEx()) {
20458
      } else if (this.isSetEx()) {
Line 22039... Line 22064...
22039
        }
22064
        }
22040
        switch (field.id) {
22065
        switch (field.id) {
22041
          case 0: // SUCCESS
22066
          case 0: // SUCCESS
22042
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
22067
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
22043
              {
22068
              {
22044
                org.apache.thrift.protocol.TList _list48 = iprot.readListBegin();
22069
                org.apache.thrift.protocol.TList _list52 = iprot.readListBegin();
22045
                this.success = new ArrayList<Order>(_list48.size);
22070
                this.success = new ArrayList<Order>(_list52.size);
22046
                for (int _i49 = 0; _i49 < _list48.size; ++_i49)
22071
                for (int _i53 = 0; _i53 < _list52.size; ++_i53)
22047
                {
22072
                {
22048
                  Order _elem50; // required
22073
                  Order _elem54; // required
22049
                  _elem50 = new Order();
22074
                  _elem54 = new Order();
22050
                  _elem50.read(iprot);
22075
                  _elem54.read(iprot);
22051
                  this.success.add(_elem50);
22076
                  this.success.add(_elem54);
22052
                }
22077
                }
22053
                iprot.readListEnd();
22078
                iprot.readListEnd();
22054
              }
22079
              }
22055
            } else { 
22080
            } else { 
22056
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
22081
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 22078... Line 22103...
22078
 
22103
 
22079
      if (this.isSetSuccess()) {
22104
      if (this.isSetSuccess()) {
22080
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
22105
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
22081
        {
22106
        {
22082
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
22107
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
22083
          for (Order _iter51 : this.success)
22108
          for (Order _iter55 : this.success)
22084
          {
22109
          {
22085
            _iter51.write(oprot);
22110
            _iter55.write(oprot);
22086
          }
22111
          }
22087
          oprot.writeListEnd();
22112
          oprot.writeListEnd();
22088
        }
22113
        }
22089
        oprot.writeFieldEnd();
22114
        oprot.writeFieldEnd();
22090
      } else if (this.isSetEx()) {
22115
      } else if (this.isSetEx()) {
Line 22621... Line 22646...
22621
            }
22646
            }
22622
            break;
22647
            break;
22623
          case 4: // STATUSES
22648
          case 4: // STATUSES
22624
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
22649
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
22625
              {
22650
              {
22626
                org.apache.thrift.protocol.TList _list52 = iprot.readListBegin();
22651
                org.apache.thrift.protocol.TList _list56 = iprot.readListBegin();
22627
                this.statuses = new ArrayList<OrderStatus>(_list52.size);
22652
                this.statuses = new ArrayList<OrderStatus>(_list56.size);
22628
                for (int _i53 = 0; _i53 < _list52.size; ++_i53)
22653
                for (int _i57 = 0; _i57 < _list56.size; ++_i57)
22629
                {
22654
                {
22630
                  OrderStatus _elem54; // required
22655
                  OrderStatus _elem58; // required
22631
                  _elem54 = OrderStatus.findByValue(iprot.readI32());
22656
                  _elem58 = OrderStatus.findByValue(iprot.readI32());
22632
                  this.statuses.add(_elem54);
22657
                  this.statuses.add(_elem58);
22633
                }
22658
                }
22634
                iprot.readListEnd();
22659
                iprot.readListEnd();
22635
              }
22660
              }
22636
            } else { 
22661
            } else { 
22637
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
22662
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 22661... Line 22686...
22661
      oprot.writeFieldEnd();
22686
      oprot.writeFieldEnd();
22662
      if (this.statuses != null) {
22687
      if (this.statuses != null) {
22663
        oprot.writeFieldBegin(STATUSES_FIELD_DESC);
22688
        oprot.writeFieldBegin(STATUSES_FIELD_DESC);
22664
        {
22689
        {
22665
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, this.statuses.size()));
22690
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, this.statuses.size()));
22666
          for (OrderStatus _iter55 : this.statuses)
22691
          for (OrderStatus _iter59 : this.statuses)
22667
          {
22692
          {
22668
            oprot.writeI32(_iter55.getValue());
22693
            oprot.writeI32(_iter59.getValue());
22669
          }
22694
          }
22670
          oprot.writeListEnd();
22695
          oprot.writeListEnd();
22671
        }
22696
        }
22672
        oprot.writeFieldEnd();
22697
        oprot.writeFieldEnd();
22673
      }
22698
      }
Line 23041... Line 23066...
23041
        }
23066
        }
23042
        switch (field.id) {
23067
        switch (field.id) {
23043
          case 0: // SUCCESS
23068
          case 0: // SUCCESS
23044
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
23069
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
23045
              {
23070
              {
23046
                org.apache.thrift.protocol.TList _list56 = iprot.readListBegin();
23071
                org.apache.thrift.protocol.TList _list60 = iprot.readListBegin();
23047
                this.success = new ArrayList<Order>(_list56.size);
23072
                this.success = new ArrayList<Order>(_list60.size);
23048
                for (int _i57 = 0; _i57 < _list56.size; ++_i57)
23073
                for (int _i61 = 0; _i61 < _list60.size; ++_i61)
23049
                {
23074
                {
23050
                  Order _elem58; // required
23075
                  Order _elem62; // required
23051
                  _elem58 = new Order();
23076
                  _elem62 = new Order();
23052
                  _elem58.read(iprot);
23077
                  _elem62.read(iprot);
23053
                  this.success.add(_elem58);
23078
                  this.success.add(_elem62);
23054
                }
23079
                }
23055
                iprot.readListEnd();
23080
                iprot.readListEnd();
23056
              }
23081
              }
23057
            } else { 
23082
            } else { 
23058
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
23083
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 23080... Line 23105...
23080
 
23105
 
23081
      if (this.isSetSuccess()) {
23106
      if (this.isSetSuccess()) {
23082
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
23107
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
23083
        {
23108
        {
23084
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
23109
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
23085
          for (Order _iter59 : this.success)
23110
          for (Order _iter63 : this.success)
23086
          {
23111
          {
23087
            _iter59.write(oprot);
23112
            _iter63.write(oprot);
23088
          }
23113
          }
23089
          oprot.writeListEnd();
23114
          oprot.writeListEnd();
23090
        }
23115
        }
23091
        oprot.writeFieldEnd();
23116
        oprot.writeFieldEnd();
23092
      } else if (this.isSetEx()) {
23117
      } else if (this.isSetEx()) {
Line 25106... Line 25131...
25106
        }
25131
        }
25107
        switch (field.id) {
25132
        switch (field.id) {
25108
          case 0: // SUCCESS
25133
          case 0: // SUCCESS
25109
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
25134
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
25110
              {
25135
              {
25111
                org.apache.thrift.protocol.TList _list60 = iprot.readListBegin();
25136
                org.apache.thrift.protocol.TList _list64 = iprot.readListBegin();
25112
                this.success = new ArrayList<LineItem>(_list60.size);
25137
                this.success = new ArrayList<LineItem>(_list64.size);
25113
                for (int _i61 = 0; _i61 < _list60.size; ++_i61)
25138
                for (int _i65 = 0; _i65 < _list64.size; ++_i65)
25114
                {
25139
                {
25115
                  LineItem _elem62; // required
25140
                  LineItem _elem66; // required
25116
                  _elem62 = new LineItem();
25141
                  _elem66 = new LineItem();
25117
                  _elem62.read(iprot);
25142
                  _elem66.read(iprot);
25118
                  this.success.add(_elem62);
25143
                  this.success.add(_elem66);
25119
                }
25144
                }
25120
                iprot.readListEnd();
25145
                iprot.readListEnd();
25121
              }
25146
              }
25122
            } else { 
25147
            } else { 
25123
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
25148
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 25145... Line 25170...
25145
 
25170
 
25146
      if (this.isSetSuccess()) {
25171
      if (this.isSetSuccess()) {
25147
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
25172
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
25148
        {
25173
        {
25149
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
25174
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
25150
          for (LineItem _iter63 : this.success)
25175
          for (LineItem _iter67 : this.success)
25151
          {
25176
          {
25152
            _iter63.write(oprot);
25177
            _iter67.write(oprot);
25153
          }
25178
          }
25154
          oprot.writeListEnd();
25179
          oprot.writeListEnd();
25155
        }
25180
        }
25156
        oprot.writeFieldEnd();
25181
        oprot.writeFieldEnd();
25157
      } else if (this.isSetEx()) {
25182
      } else if (this.isSetEx()) {
Line 26757... Line 26782...
26757
        }
26782
        }
26758
        switch (field.id) {
26783
        switch (field.id) {
26759
          case 0: // SUCCESS
26784
          case 0: // SUCCESS
26760
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
26785
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
26761
              {
26786
              {
26762
                org.apache.thrift.protocol.TList _list64 = iprot.readListBegin();
26787
                org.apache.thrift.protocol.TList _list68 = iprot.readListBegin();
26763
                this.success = new ArrayList<Alert>(_list64.size);
26788
                this.success = new ArrayList<Alert>(_list68.size);
26764
                for (int _i65 = 0; _i65 < _list64.size; ++_i65)
26789
                for (int _i69 = 0; _i69 < _list68.size; ++_i69)
26765
                {
26790
                {
26766
                  Alert _elem66; // required
26791
                  Alert _elem70; // required
26767
                  _elem66 = new Alert();
26792
                  _elem70 = new Alert();
26768
                  _elem66.read(iprot);
26793
                  _elem70.read(iprot);
26769
                  this.success.add(_elem66);
26794
                  this.success.add(_elem70);
26770
                }
26795
                }
26771
                iprot.readListEnd();
26796
                iprot.readListEnd();
26772
              }
26797
              }
26773
            } else { 
26798
            } else { 
26774
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
26799
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 26788... Line 26813...
26788
 
26813
 
26789
      if (this.isSetSuccess()) {
26814
      if (this.isSetSuccess()) {
26790
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
26815
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
26791
        {
26816
        {
26792
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
26817
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
26793
          for (Alert _iter67 : this.success)
26818
          for (Alert _iter71 : this.success)
26794
          {
26819
          {
26795
            _iter67.write(oprot);
26820
            _iter71.write(oprot);
26796
          }
26821
          }
26797
          oprot.writeListEnd();
26822
          oprot.writeListEnd();
26798
        }
26823
        }
26799
        oprot.writeFieldEnd();
26824
        oprot.writeFieldEnd();
26800
      }
26825
      }
Line 29431... Line 29456...
29431
        }
29456
        }
29432
        switch (field.id) {
29457
        switch (field.id) {
29433
          case 0: // SUCCESS
29458
          case 0: // SUCCESS
29434
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
29459
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
29435
              {
29460
              {
29436
                org.apache.thrift.protocol.TList _list68 = iprot.readListBegin();
29461
                org.apache.thrift.protocol.TList _list72 = iprot.readListBegin();
29437
                this.success = new ArrayList<Double>(_list68.size);
29462
                this.success = new ArrayList<Double>(_list72.size);
29438
                for (int _i69 = 0; _i69 < _list68.size; ++_i69)
29463
                for (int _i73 = 0; _i73 < _list72.size; ++_i73)
29439
                {
29464
                {
29440
                  double _elem70; // required
29465
                  double _elem74; // required
29441
                  _elem70 = iprot.readDouble();
29466
                  _elem74 = iprot.readDouble();
29442
                  this.success.add(_elem70);
29467
                  this.success.add(_elem74);
29443
                }
29468
                }
29444
                iprot.readListEnd();
29469
                iprot.readListEnd();
29445
              }
29470
              }
29446
            } else { 
29471
            } else { 
29447
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
29472
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 29461... Line 29486...
29461
 
29486
 
29462
      if (this.isSetSuccess()) {
29487
      if (this.isSetSuccess()) {
29463
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
29488
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
29464
        {
29489
        {
29465
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.DOUBLE, this.success.size()));
29490
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.DOUBLE, this.success.size()));
29466
          for (double _iter71 : this.success)
29491
          for (double _iter75 : this.success)
29467
          {
29492
          {
29468
            oprot.writeDouble(_iter71);
29493
            oprot.writeDouble(_iter75);
29469
          }
29494
          }
29470
          oprot.writeListEnd();
29495
          oprot.writeListEnd();
29471
        }
29496
        }
29472
        oprot.writeFieldEnd();
29497
        oprot.writeFieldEnd();
29473
      }
29498
      }
Line 30053... Line 30078...
30053
        }
30078
        }
30054
        switch (field.id) {
30079
        switch (field.id) {
30055
          case 0: // SUCCESS
30080
          case 0: // SUCCESS
30056
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
30081
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
30057
              {
30082
              {
30058
                org.apache.thrift.protocol.TList _list72 = iprot.readListBegin();
30083
                org.apache.thrift.protocol.TList _list76 = iprot.readListBegin();
30059
                this.success = new ArrayList<Order>(_list72.size);
30084
                this.success = new ArrayList<Order>(_list76.size);
30060
                for (int _i73 = 0; _i73 < _list72.size; ++_i73)
30085
                for (int _i77 = 0; _i77 < _list76.size; ++_i77)
30061
                {
30086
                {
30062
                  Order _elem74; // required
30087
                  Order _elem78; // required
30063
                  _elem74 = new Order();
30088
                  _elem78 = new Order();
30064
                  _elem74.read(iprot);
30089
                  _elem78.read(iprot);
30065
                  this.success.add(_elem74);
30090
                  this.success.add(_elem78);
30066
                }
30091
                }
30067
                iprot.readListEnd();
30092
                iprot.readListEnd();
30068
              }
30093
              }
30069
            } else { 
30094
            } else { 
30070
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
30095
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 30084... Line 30109...
30084
 
30109
 
30085
      if (this.isSetSuccess()) {
30110
      if (this.isSetSuccess()) {
30086
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
30111
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
30087
        {
30112
        {
30088
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
30113
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
30089
          for (Order _iter75 : this.success)
30114
          for (Order _iter79 : this.success)
30090
          {
30115
          {
30091
            _iter75.write(oprot);
30116
            _iter79.write(oprot);
30092
          }
30117
          }
30093
          oprot.writeListEnd();
30118
          oprot.writeListEnd();
30094
        }
30119
        }
30095
        oprot.writeFieldEnd();
30120
        oprot.writeFieldEnd();
30096
      }
30121
      }
Line 30418... Line 30443...
30418
      }
30443
      }
30419
    }
30444
    }
30420
 
30445
 
30421
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
30446
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
30422
      try {
30447
      try {
30423
        // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
-
 
30424
        __isset_bit_vector = new BitSet(1);
-
 
30425
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
30448
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
30426
      } catch (org.apache.thrift.TException te) {
30449
      } catch (org.apache.thrift.TException te) {
30427
        throw new java.io.IOException(te);
30450
        throw new java.io.IOException(te);
30428
      }
30451
      }
30429
    }
30452
    }
Line 30746... Line 30769...
30746
        }
30769
        }
30747
        switch (field.id) {
30770
        switch (field.id) {
30748
          case 0: // SUCCESS
30771
          case 0: // SUCCESS
30749
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
30772
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
30750
              {
30773
              {
30751
                org.apache.thrift.protocol.TList _list76 = iprot.readListBegin();
30774
                org.apache.thrift.protocol.TList _list80 = iprot.readListBegin();
30752
                this.success = new ArrayList<Order>(_list76.size);
30775
                this.success = new ArrayList<Order>(_list80.size);
30753
                for (int _i77 = 0; _i77 < _list76.size; ++_i77)
30776
                for (int _i81 = 0; _i81 < _list80.size; ++_i81)
30754
                {
30777
                {
30755
                  Order _elem78; // required
30778
                  Order _elem82; // required
30756
                  _elem78 = new Order();
30779
                  _elem82 = new Order();
30757
                  _elem78.read(iprot);
30780
                  _elem82.read(iprot);
30758
                  this.success.add(_elem78);
30781
                  this.success.add(_elem82);
30759
                }
30782
                }
30760
                iprot.readListEnd();
30783
                iprot.readListEnd();
30761
              }
30784
              }
30762
            } else { 
30785
            } else { 
30763
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
30786
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 30785... Line 30808...
30785
 
30808
 
30786
      if (this.isSetSuccess()) {
30809
      if (this.isSetSuccess()) {
30787
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
30810
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
30788
        {
30811
        {
30789
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
30812
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
30790
          for (Order _iter79 : this.success)
30813
          for (Order _iter83 : this.success)
30791
          {
30814
          {
30792
            _iter79.write(oprot);
30815
            _iter83.write(oprot);
30793
          }
30816
          }
30794
          oprot.writeListEnd();
30817
          oprot.writeListEnd();
30795
        }
30818
        }
30796
        oprot.writeFieldEnd();
30819
        oprot.writeFieldEnd();
30797
      } else if (this.isSetEx()) {
30820
      } else if (this.isSetEx()) {
Line 33834... Line 33857...
33834
      }
33857
      }
33835
    }
33858
    }
33836
 
33859
 
33837
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
33860
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
33838
      try {
33861
      try {
-
 
33862
        // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
-
 
33863
        __isset_bit_vector = new BitSet(1);
33839
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
33864
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
33840
      } catch (org.apache.thrift.TException te) {
33865
      } catch (org.apache.thrift.TException te) {
33841
        throw new java.io.IOException(te);
33866
        throw new java.io.IOException(te);
33842
      }
33867
      }
33843
    }
33868
    }
Line 36307... Line 36332...
36307
            }
36332
            }
36308
            break;
36333
            break;
36309
          case 4: // ORDER_IDS
36334
          case 4: // ORDER_IDS
36310
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
36335
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
36311
              {
36336
              {
36312
                org.apache.thrift.protocol.TList _list80 = iprot.readListBegin();
36337
                org.apache.thrift.protocol.TList _list84 = iprot.readListBegin();
36313
                this.orderIds = new ArrayList<Long>(_list80.size);
36338
                this.orderIds = new ArrayList<Long>(_list84.size);
36314
                for (int _i81 = 0; _i81 < _list80.size; ++_i81)
36339
                for (int _i85 = 0; _i85 < _list84.size; ++_i85)
36315
                {
36340
                {
36316
                  long _elem82; // required
36341
                  long _elem86; // required
36317
                  _elem82 = iprot.readI64();
36342
                  _elem86 = iprot.readI64();
36318
                  this.orderIds.add(_elem82);
36343
                  this.orderIds.add(_elem86);
36319
                }
36344
                }
36320
                iprot.readListEnd();
36345
                iprot.readListEnd();
36321
              }
36346
              }
36322
            } else { 
36347
            } else { 
36323
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
36348
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 36347... Line 36372...
36347
      oprot.writeFieldEnd();
36372
      oprot.writeFieldEnd();
36348
      if (this.orderIds != null) {
36373
      if (this.orderIds != null) {
36349
        oprot.writeFieldBegin(ORDER_IDS_FIELD_DESC);
36374
        oprot.writeFieldBegin(ORDER_IDS_FIELD_DESC);
36350
        {
36375
        {
36351
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.orderIds.size()));
36376
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.orderIds.size()));
36352
          for (long _iter83 : this.orderIds)
36377
          for (long _iter87 : this.orderIds)
36353
          {
36378
          {
36354
            oprot.writeI64(_iter83);
36379
            oprot.writeI64(_iter87);
36355
          }
36380
          }
36356
          oprot.writeListEnd();
36381
          oprot.writeListEnd();
36357
        }
36382
        }
36358
        oprot.writeFieldEnd();
36383
        oprot.writeFieldEnd();
36359
      }
36384
      }
Line 37124... Line 37149...
37124
            }
37149
            }
37125
            break;
37150
            break;
37126
          case 2: // PICKUP_DETAILS
37151
          case 2: // PICKUP_DETAILS
37127
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
37152
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
37128
              {
37153
              {
37129
                org.apache.thrift.protocol.TMap _map84 = iprot.readMapBegin();
37154
                org.apache.thrift.protocol.TMap _map88 = iprot.readMapBegin();
37130
                this.pickupDetails = new HashMap<String,String>(2*_map84.size);
37155
                this.pickupDetails = new HashMap<String,String>(2*_map88.size);
37131
                for (int _i85 = 0; _i85 < _map84.size; ++_i85)
37156
                for (int _i89 = 0; _i89 < _map88.size; ++_i89)
37132
                {
37157
                {
37133
                  String _key86; // required
37158
                  String _key90; // required
37134
                  String _val87; // required
37159
                  String _val91; // required
37135
                  _key86 = iprot.readString();
37160
                  _key90 = iprot.readString();
37136
                  _val87 = iprot.readString();
37161
                  _val91 = iprot.readString();
37137
                  this.pickupDetails.put(_key86, _val87);
37162
                  this.pickupDetails.put(_key90, _val91);
37138
                }
37163
                }
37139
                iprot.readMapEnd();
37164
                iprot.readMapEnd();
37140
              }
37165
              }
37141
            } else { 
37166
            } else { 
37142
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
37167
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 37160... Line 37185...
37160
      oprot.writeFieldEnd();
37185
      oprot.writeFieldEnd();
37161
      if (this.pickupDetails != null) {
37186
      if (this.pickupDetails != null) {
37162
        oprot.writeFieldBegin(PICKUP_DETAILS_FIELD_DESC);
37187
        oprot.writeFieldBegin(PICKUP_DETAILS_FIELD_DESC);
37163
        {
37188
        {
37164
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.pickupDetails.size()));
37189
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.pickupDetails.size()));
37165
          for (Map.Entry<String, String> _iter88 : this.pickupDetails.entrySet())
37190
          for (Map.Entry<String, String> _iter92 : this.pickupDetails.entrySet())
37166
          {
37191
          {
37167
            oprot.writeString(_iter88.getKey());
37192
            oprot.writeString(_iter92.getKey());
37168
            oprot.writeString(_iter88.getValue());
37193
            oprot.writeString(_iter92.getValue());
37169
          }
37194
          }
37170
          oprot.writeMapEnd();
37195
          oprot.writeMapEnd();
37171
        }
37196
        }
37172
        oprot.writeFieldEnd();
37197
        oprot.writeFieldEnd();
37173
      }
37198
      }
Line 37533... Line 37558...
37533
        }
37558
        }
37534
        switch (field.id) {
37559
        switch (field.id) {
37535
          case 0: // SUCCESS
37560
          case 0: // SUCCESS
37536
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
37561
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
37537
              {
37562
              {
37538
                org.apache.thrift.protocol.TList _list89 = iprot.readListBegin();
37563
                org.apache.thrift.protocol.TList _list93 = iprot.readListBegin();
37539
                this.success = new ArrayList<Order>(_list89.size);
37564
                this.success = new ArrayList<Order>(_list93.size);
37540
                for (int _i90 = 0; _i90 < _list89.size; ++_i90)
37565
                for (int _i94 = 0; _i94 < _list93.size; ++_i94)
37541
                {
37566
                {
37542
                  Order _elem91; // required
37567
                  Order _elem95; // required
37543
                  _elem91 = new Order();
37568
                  _elem95 = new Order();
37544
                  _elem91.read(iprot);
37569
                  _elem95.read(iprot);
37545
                  this.success.add(_elem91);
37570
                  this.success.add(_elem95);
37546
                }
37571
                }
37547
                iprot.readListEnd();
37572
                iprot.readListEnd();
37548
              }
37573
              }
37549
            } else { 
37574
            } else { 
37550
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
37575
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 37572... Line 37597...
37572
 
37597
 
37573
      if (this.isSetSuccess()) {
37598
      if (this.isSetSuccess()) {
37574
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
37599
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
37575
        {
37600
        {
37576
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
37601
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
37577
          for (Order _iter92 : this.success)
37602
          for (Order _iter96 : this.success)
37578
          {
37603
          {
37579
            _iter92.write(oprot);
37604
            _iter96.write(oprot);
37580
          }
37605
          }
37581
          oprot.writeListEnd();
37606
          oprot.writeListEnd();
37582
        }
37607
        }
37583
        oprot.writeFieldEnd();
37608
        oprot.writeFieldEnd();
37584
      } else if (this.isSetEx()) {
37609
      } else if (this.isSetEx()) {
Line 37968... Line 37993...
37968
            }
37993
            }
37969
            break;
37994
            break;
37970
          case 2: // DELIVERED_ORDERS
37995
          case 2: // DELIVERED_ORDERS
37971
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
37996
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
37972
              {
37997
              {
37973
                org.apache.thrift.protocol.TMap _map93 = iprot.readMapBegin();
37998
                org.apache.thrift.protocol.TMap _map97 = iprot.readMapBegin();
37974
                this.deliveredOrders = new HashMap<String,String>(2*_map93.size);
37999
                this.deliveredOrders = new HashMap<String,String>(2*_map97.size);
37975
                for (int _i94 = 0; _i94 < _map93.size; ++_i94)
38000
                for (int _i98 = 0; _i98 < _map97.size; ++_i98)
37976
                {
38001
                {
37977
                  String _key95; // required
38002
                  String _key99; // required
37978
                  String _val96; // required
38003
                  String _val100; // required
37979
                  _key95 = iprot.readString();
38004
                  _key99 = iprot.readString();
37980
                  _val96 = iprot.readString();
38005
                  _val100 = iprot.readString();
37981
                  this.deliveredOrders.put(_key95, _val96);
38006
                  this.deliveredOrders.put(_key99, _val100);
37982
                }
38007
                }
37983
                iprot.readMapEnd();
38008
                iprot.readMapEnd();
37984
              }
38009
              }
37985
            } else { 
38010
            } else { 
37986
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
38011
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 38004... Line 38029...
38004
      oprot.writeFieldEnd();
38029
      oprot.writeFieldEnd();
38005
      if (this.deliveredOrders != null) {
38030
      if (this.deliveredOrders != null) {
38006
        oprot.writeFieldBegin(DELIVERED_ORDERS_FIELD_DESC);
38031
        oprot.writeFieldBegin(DELIVERED_ORDERS_FIELD_DESC);
38007
        {
38032
        {
38008
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.deliveredOrders.size()));
38033
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.deliveredOrders.size()));
38009
          for (Map.Entry<String, String> _iter97 : this.deliveredOrders.entrySet())
38034
          for (Map.Entry<String, String> _iter101 : this.deliveredOrders.entrySet())
38010
          {
38035
          {
38011
            oprot.writeString(_iter97.getKey());
38036
            oprot.writeString(_iter101.getKey());
38012
            oprot.writeString(_iter97.getValue());
38037
            oprot.writeString(_iter101.getValue());
38013
          }
38038
          }
38014
          oprot.writeMapEnd();
38039
          oprot.writeMapEnd();
38015
        }
38040
        }
38016
        oprot.writeFieldEnd();
38041
        oprot.writeFieldEnd();
38017
      }
38042
      }
Line 38687... Line 38712...
38687
            }
38712
            }
38688
            break;
38713
            break;
38689
          case 2: // RETURNED_ORDERS
38714
          case 2: // RETURNED_ORDERS
38690
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
38715
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
38691
              {
38716
              {
38692
                org.apache.thrift.protocol.TMap _map98 = iprot.readMapBegin();
38717
                org.apache.thrift.protocol.TMap _map102 = iprot.readMapBegin();
38693
                this.returnedOrders = new HashMap<String,String>(2*_map98.size);
38718
                this.returnedOrders = new HashMap<String,String>(2*_map102.size);
38694
                for (int _i99 = 0; _i99 < _map98.size; ++_i99)
38719
                for (int _i103 = 0; _i103 < _map102.size; ++_i103)
38695
                {
38720
                {
38696
                  String _key100; // required
38721
                  String _key104; // required
38697
                  String _val101; // required
38722
                  String _val105; // required
38698
                  _key100 = iprot.readString();
38723
                  _key104 = iprot.readString();
38699
                  _val101 = iprot.readString();
38724
                  _val105 = iprot.readString();
38700
                  this.returnedOrders.put(_key100, _val101);
38725
                  this.returnedOrders.put(_key104, _val105);
38701
                }
38726
                }
38702
                iprot.readMapEnd();
38727
                iprot.readMapEnd();
38703
              }
38728
              }
38704
            } else { 
38729
            } else { 
38705
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
38730
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 38723... Line 38748...
38723
      oprot.writeFieldEnd();
38748
      oprot.writeFieldEnd();
38724
      if (this.returnedOrders != null) {
38749
      if (this.returnedOrders != null) {
38725
        oprot.writeFieldBegin(RETURNED_ORDERS_FIELD_DESC);
38750
        oprot.writeFieldBegin(RETURNED_ORDERS_FIELD_DESC);
38726
        {
38751
        {
38727
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.returnedOrders.size()));
38752
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.returnedOrders.size()));
38728
          for (Map.Entry<String, String> _iter102 : this.returnedOrders.entrySet())
38753
          for (Map.Entry<String, String> _iter106 : this.returnedOrders.entrySet())
38729
          {
38754
          {
38730
            oprot.writeString(_iter102.getKey());
38755
            oprot.writeString(_iter106.getKey());
38731
            oprot.writeString(_iter102.getValue());
38756
            oprot.writeString(_iter106.getValue());
38732
          }
38757
          }
38733
          oprot.writeMapEnd();
38758
          oprot.writeMapEnd();
38734
        }
38759
        }
38735
        oprot.writeFieldEnd();
38760
        oprot.writeFieldEnd();
38736
      }
38761
      }
Line 39406... Line 39431...
39406
            }
39431
            }
39407
            break;
39432
            break;
39408
          case 2: // UNDELIVERED_ORDERS
39433
          case 2: // UNDELIVERED_ORDERS
39409
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
39434
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
39410
              {
39435
              {
39411
                org.apache.thrift.protocol.TMap _map103 = iprot.readMapBegin();
39436
                org.apache.thrift.protocol.TMap _map107 = iprot.readMapBegin();
39412
                this.undeliveredOrders = new HashMap<String,String>(2*_map103.size);
39437
                this.undeliveredOrders = new HashMap<String,String>(2*_map107.size);
39413
                for (int _i104 = 0; _i104 < _map103.size; ++_i104)
39438
                for (int _i108 = 0; _i108 < _map107.size; ++_i108)
39414
                {
39439
                {
39415
                  String _key105; // required
39440
                  String _key109; // required
39416
                  String _val106; // required
39441
                  String _val110; // required
39417
                  _key105 = iprot.readString();
39442
                  _key109 = iprot.readString();
39418
                  _val106 = iprot.readString();
39443
                  _val110 = iprot.readString();
39419
                  this.undeliveredOrders.put(_key105, _val106);
39444
                  this.undeliveredOrders.put(_key109, _val110);
39420
                }
39445
                }
39421
                iprot.readMapEnd();
39446
                iprot.readMapEnd();
39422
              }
39447
              }
39423
            } else { 
39448
            } else { 
39424
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
39449
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 39442... Line 39467...
39442
      oprot.writeFieldEnd();
39467
      oprot.writeFieldEnd();
39443
      if (this.undeliveredOrders != null) {
39468
      if (this.undeliveredOrders != null) {
39444
        oprot.writeFieldBegin(UNDELIVERED_ORDERS_FIELD_DESC);
39469
        oprot.writeFieldBegin(UNDELIVERED_ORDERS_FIELD_DESC);
39445
        {
39470
        {
39446
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.undeliveredOrders.size()));
39471
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.undeliveredOrders.size()));
39447
          for (Map.Entry<String, String> _iter107 : this.undeliveredOrders.entrySet())
39472
          for (Map.Entry<String, String> _iter111 : this.undeliveredOrders.entrySet())
39448
          {
39473
          {
39449
            oprot.writeString(_iter107.getKey());
39474
            oprot.writeString(_iter111.getKey());
39450
            oprot.writeString(_iter107.getValue());
39475
            oprot.writeString(_iter111.getValue());
39451
          }
39476
          }
39452
          oprot.writeMapEnd();
39477
          oprot.writeMapEnd();
39453
        }
39478
        }
39454
        oprot.writeFieldEnd();
39479
        oprot.writeFieldEnd();
39455
      }
39480
      }
Line 39815... Line 39840...
39815
        }
39840
        }
39816
        switch (field.id) {
39841
        switch (field.id) {
39817
          case 0: // SUCCESS
39842
          case 0: // SUCCESS
39818
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
39843
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
39819
              {
39844
              {
39820
                org.apache.thrift.protocol.TList _list108 = iprot.readListBegin();
39845
                org.apache.thrift.protocol.TList _list112 = iprot.readListBegin();
39821
                this.success = new ArrayList<Order>(_list108.size);
39846
                this.success = new ArrayList<Order>(_list112.size);
39822
                for (int _i109 = 0; _i109 < _list108.size; ++_i109)
39847
                for (int _i113 = 0; _i113 < _list112.size; ++_i113)
39823
                {
39848
                {
39824
                  Order _elem110; // required
39849
                  Order _elem114; // required
39825
                  _elem110 = new Order();
39850
                  _elem114 = new Order();
39826
                  _elem110.read(iprot);
39851
                  _elem114.read(iprot);
39827
                  this.success.add(_elem110);
39852
                  this.success.add(_elem114);
39828
                }
39853
                }
39829
                iprot.readListEnd();
39854
                iprot.readListEnd();
39830
              }
39855
              }
39831
            } else { 
39856
            } else { 
39832
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
39857
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 39854... Line 39879...
39854
 
39879
 
39855
      if (this.isSetSuccess()) {
39880
      if (this.isSetSuccess()) {
39856
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
39881
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
39857
        {
39882
        {
39858
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
39883
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
39859
          for (Order _iter111 : this.success)
39884
          for (Order _iter115 : this.success)
39860
          {
39885
          {
39861
            _iter111.write(oprot);
39886
            _iter115.write(oprot);
39862
          }
39887
          }
39863
          oprot.writeListEnd();
39888
          oprot.writeListEnd();
39864
        }
39889
        }
39865
        oprot.writeFieldEnd();
39890
        oprot.writeFieldEnd();
39866
      } else if (this.isSetEx()) {
39891
      } else if (this.isSetEx()) {
Line 40541... Line 40566...
40541
        }
40566
        }
40542
        switch (field.id) {
40567
        switch (field.id) {
40543
          case 0: // SUCCESS
40568
          case 0: // SUCCESS
40544
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
40569
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
40545
              {
40570
              {
40546
                org.apache.thrift.protocol.TList _list112 = iprot.readListBegin();
40571
                org.apache.thrift.protocol.TList _list116 = iprot.readListBegin();
40547
                this.success = new ArrayList<Order>(_list112.size);
40572
                this.success = new ArrayList<Order>(_list116.size);
40548
                for (int _i113 = 0; _i113 < _list112.size; ++_i113)
40573
                for (int _i117 = 0; _i117 < _list116.size; ++_i117)
40549
                {
40574
                {
40550
                  Order _elem114; // required
40575
                  Order _elem118; // required
40551
                  _elem114 = new Order();
40576
                  _elem118 = new Order();
40552
                  _elem114.read(iprot);
40577
                  _elem118.read(iprot);
40553
                  this.success.add(_elem114);
40578
                  this.success.add(_elem118);
40554
                }
40579
                }
40555
                iprot.readListEnd();
40580
                iprot.readListEnd();
40556
              }
40581
              }
40557
            } else { 
40582
            } else { 
40558
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
40583
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 40572... Line 40597...
40572
 
40597
 
40573
      if (this.isSetSuccess()) {
40598
      if (this.isSetSuccess()) {
40574
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
40599
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
40575
        {
40600
        {
40576
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
40601
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
40577
          for (Order _iter115 : this.success)
40602
          for (Order _iter119 : this.success)
40578
          {
40603
          {
40579
            _iter115.write(oprot);
40604
            _iter119.write(oprot);
40580
          }
40605
          }
40581
          oprot.writeListEnd();
40606
          oprot.writeListEnd();
40582
        }
40607
        }
40583
        oprot.writeFieldEnd();
40608
        oprot.writeFieldEnd();
40584
      }
40609
      }
Line 41072... Line 41097...
41072
        }
41097
        }
41073
        switch (field.id) {
41098
        switch (field.id) {
41074
          case 0: // SUCCESS
41099
          case 0: // SUCCESS
41075
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
41100
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
41076
              {
41101
              {
41077
                org.apache.thrift.protocol.TList _list116 = iprot.readListBegin();
41102
                org.apache.thrift.protocol.TList _list120 = iprot.readListBegin();
41078
                this.success = new ArrayList<Order>(_list116.size);
41103
                this.success = new ArrayList<Order>(_list120.size);
41079
                for (int _i117 = 0; _i117 < _list116.size; ++_i117)
41104
                for (int _i121 = 0; _i121 < _list120.size; ++_i121)
41080
                {
41105
                {
41081
                  Order _elem118; // required
41106
                  Order _elem122; // required
41082
                  _elem118 = new Order();
41107
                  _elem122 = new Order();
41083
                  _elem118.read(iprot);
41108
                  _elem122.read(iprot);
41084
                  this.success.add(_elem118);
41109
                  this.success.add(_elem122);
41085
                }
41110
                }
41086
                iprot.readListEnd();
41111
                iprot.readListEnd();
41087
              }
41112
              }
41088
            } else { 
41113
            } else { 
41089
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
41114
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 41103... Line 41128...
41103
 
41128
 
41104
      if (this.isSetSuccess()) {
41129
      if (this.isSetSuccess()) {
41105
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
41130
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
41106
        {
41131
        {
41107
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
41132
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
41108
          for (Order _iter119 : this.success)
41133
          for (Order _iter123 : this.success)
41109
          {
41134
          {
41110
            _iter119.write(oprot);
41135
            _iter123.write(oprot);
41111
          }
41136
          }
41112
          oprot.writeListEnd();
41137
          oprot.writeListEnd();
41113
        }
41138
        }
41114
        oprot.writeFieldEnd();
41139
        oprot.writeFieldEnd();
41115
      }
41140
      }
Line 45812... Line 45837...
45812
      }
45837
      }
45813
    }
45838
    }
45814
 
45839
 
45815
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
45840
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
45816
      try {
45841
      try {
-
 
45842
        // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
-
 
45843
        __isset_bit_vector = new BitSet(1);
45817
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
45844
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
45818
      } catch (org.apache.thrift.TException te) {
45845
      } catch (org.apache.thrift.TException te) {
45819
        throw new java.io.IOException(te);
45846
        throw new java.io.IOException(te);
45820
      }
45847
      }
45821
    }
45848
    }
Line 47379... Line 47406...
47379
            }
47406
            }
47380
            break;
47407
            break;
47381
          case 2: // PICKUP_DETAILS
47408
          case 2: // PICKUP_DETAILS
47382
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
47409
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
47383
              {
47410
              {
47384
                org.apache.thrift.protocol.TMap _map120 = iprot.readMapBegin();
47411
                org.apache.thrift.protocol.TMap _map124 = iprot.readMapBegin();
47385
                this.pickupDetails = new HashMap<String,String>(2*_map120.size);
47412
                this.pickupDetails = new HashMap<String,String>(2*_map124.size);
47386
                for (int _i121 = 0; _i121 < _map120.size; ++_i121)
47413
                for (int _i125 = 0; _i125 < _map124.size; ++_i125)
47387
                {
47414
                {
47388
                  String _key122; // required
47415
                  String _key126; // required
47389
                  String _val123; // required
47416
                  String _val127; // required
47390
                  _key122 = iprot.readString();
47417
                  _key126 = iprot.readString();
47391
                  _val123 = iprot.readString();
47418
                  _val127 = iprot.readString();
47392
                  this.pickupDetails.put(_key122, _val123);
47419
                  this.pickupDetails.put(_key126, _val127);
47393
                }
47420
                }
47394
                iprot.readMapEnd();
47421
                iprot.readMapEnd();
47395
              }
47422
              }
47396
            } else { 
47423
            } else { 
47397
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
47424
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 47415... Line 47442...
47415
      oprot.writeFieldEnd();
47442
      oprot.writeFieldEnd();
47416
      if (this.pickupDetails != null) {
47443
      if (this.pickupDetails != null) {
47417
        oprot.writeFieldBegin(PICKUP_DETAILS_FIELD_DESC);
47444
        oprot.writeFieldBegin(PICKUP_DETAILS_FIELD_DESC);
47418
        {
47445
        {
47419
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.pickupDetails.size()));
47446
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.pickupDetails.size()));
47420
          for (Map.Entry<String, String> _iter124 : this.pickupDetails.entrySet())
47447
          for (Map.Entry<String, String> _iter128 : this.pickupDetails.entrySet())
47421
          {
47448
          {
47422
            oprot.writeString(_iter124.getKey());
47449
            oprot.writeString(_iter128.getKey());
47423
            oprot.writeString(_iter124.getValue());
47450
            oprot.writeString(_iter128.getValue());
47424
          }
47451
          }
47425
          oprot.writeMapEnd();
47452
          oprot.writeMapEnd();
47426
        }
47453
        }
47427
        oprot.writeFieldEnd();
47454
        oprot.writeFieldEnd();
47428
      }
47455
      }
Line 47720... Line 47747...
47720
        }
47747
        }
47721
        switch (field.id) {
47748
        switch (field.id) {
47722
          case 0: // SUCCESS
47749
          case 0: // SUCCESS
47723
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
47750
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
47724
              {
47751
              {
47725
                org.apache.thrift.protocol.TList _list125 = iprot.readListBegin();
47752
                org.apache.thrift.protocol.TList _list129 = iprot.readListBegin();
47726
                this.success = new ArrayList<Order>(_list125.size);
47753
                this.success = new ArrayList<Order>(_list129.size);
47727
                for (int _i126 = 0; _i126 < _list125.size; ++_i126)
47754
                for (int _i130 = 0; _i130 < _list129.size; ++_i130)
47728
                {
47755
                {
47729
                  Order _elem127; // required
47756
                  Order _elem131; // required
47730
                  _elem127 = new Order();
47757
                  _elem131 = new Order();
47731
                  _elem127.read(iprot);
47758
                  _elem131.read(iprot);
47732
                  this.success.add(_elem127);
47759
                  this.success.add(_elem131);
47733
                }
47760
                }
47734
                iprot.readListEnd();
47761
                iprot.readListEnd();
47735
              }
47762
              }
47736
            } else { 
47763
            } else { 
47737
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
47764
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 47751... Line 47778...
47751
 
47778
 
47752
      if (this.isSetSuccess()) {
47779
      if (this.isSetSuccess()) {
47753
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
47780
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
47754
        {
47781
        {
47755
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
47782
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
47756
          for (Order _iter128 : this.success)
47783
          for (Order _iter132 : this.success)
47757
          {
47784
          {
47758
            _iter128.write(oprot);
47785
            _iter132.write(oprot);
47759
          }
47786
          }
47760
          oprot.writeListEnd();
47787
          oprot.writeListEnd();
47761
        }
47788
        }
47762
        oprot.writeFieldEnd();
47789
        oprot.writeFieldEnd();
47763
      }
47790
      }
Line 48135... Line 48162...
48135
            }
48162
            }
48136
            break;
48163
            break;
48137
          case 2: // PICKUP_DETAILS
48164
          case 2: // PICKUP_DETAILS
48138
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
48165
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
48139
              {
48166
              {
48140
                org.apache.thrift.protocol.TMap _map129 = iprot.readMapBegin();
48167
                org.apache.thrift.protocol.TMap _map133 = iprot.readMapBegin();
48141
                this.pickupDetails = new HashMap<String,String>(2*_map129.size);
48168
                this.pickupDetails = new HashMap<String,String>(2*_map133.size);
48142
                for (int _i130 = 0; _i130 < _map129.size; ++_i130)
48169
                for (int _i134 = 0; _i134 < _map133.size; ++_i134)
48143
                {
48170
                {
48144
                  String _key131; // required
48171
                  String _key135; // required
48145
                  String _val132; // required
48172
                  String _val136; // required
48146
                  _key131 = iprot.readString();
48173
                  _key135 = iprot.readString();
48147
                  _val132 = iprot.readString();
48174
                  _val136 = iprot.readString();
48148
                  this.pickupDetails.put(_key131, _val132);
48175
                  this.pickupDetails.put(_key135, _val136);
48149
                }
48176
                }
48150
                iprot.readMapEnd();
48177
                iprot.readMapEnd();
48151
              }
48178
              }
48152
            } else { 
48179
            } else { 
48153
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
48180
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 48171... Line 48198...
48171
      oprot.writeFieldEnd();
48198
      oprot.writeFieldEnd();
48172
      if (this.pickupDetails != null) {
48199
      if (this.pickupDetails != null) {
48173
        oprot.writeFieldBegin(PICKUP_DETAILS_FIELD_DESC);
48200
        oprot.writeFieldBegin(PICKUP_DETAILS_FIELD_DESC);
48174
        {
48201
        {
48175
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.pickupDetails.size()));
48202
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.pickupDetails.size()));
48176
          for (Map.Entry<String, String> _iter133 : this.pickupDetails.entrySet())
48203
          for (Map.Entry<String, String> _iter137 : this.pickupDetails.entrySet())
48177
          {
48204
          {
48178
            oprot.writeString(_iter133.getKey());
48205
            oprot.writeString(_iter137.getKey());
48179
            oprot.writeString(_iter133.getValue());
48206
            oprot.writeString(_iter137.getValue());
48180
          }
48207
          }
48181
          oprot.writeMapEnd();
48208
          oprot.writeMapEnd();
48182
        }
48209
        }
48183
        oprot.writeFieldEnd();
48210
        oprot.writeFieldEnd();
48184
      }
48211
      }
Line 48476... Line 48503...
48476
        }
48503
        }
48477
        switch (field.id) {
48504
        switch (field.id) {
48478
          case 0: // SUCCESS
48505
          case 0: // SUCCESS
48479
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
48506
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
48480
              {
48507
              {
48481
                org.apache.thrift.protocol.TList _list134 = iprot.readListBegin();
48508
                org.apache.thrift.protocol.TList _list138 = iprot.readListBegin();
48482
                this.success = new ArrayList<Order>(_list134.size);
48509
                this.success = new ArrayList<Order>(_list138.size);
48483
                for (int _i135 = 0; _i135 < _list134.size; ++_i135)
48510
                for (int _i139 = 0; _i139 < _list138.size; ++_i139)
48484
                {
48511
                {
48485
                  Order _elem136; // required
48512
                  Order _elem140; // required
48486
                  _elem136 = new Order();
48513
                  _elem140 = new Order();
48487
                  _elem136.read(iprot);
48514
                  _elem140.read(iprot);
48488
                  this.success.add(_elem136);
48515
                  this.success.add(_elem140);
48489
                }
48516
                }
48490
                iprot.readListEnd();
48517
                iprot.readListEnd();
48491
              }
48518
              }
48492
            } else { 
48519
            } else { 
48493
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
48520
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 48507... Line 48534...
48507
 
48534
 
48508
      if (this.isSetSuccess()) {
48535
      if (this.isSetSuccess()) {
48509
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
48536
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
48510
        {
48537
        {
48511
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
48538
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
48512
          for (Order _iter137 : this.success)
48539
          for (Order _iter141 : this.success)
48513
          {
48540
          {
48514
            _iter137.write(oprot);
48541
            _iter141.write(oprot);
48515
          }
48542
          }
48516
          oprot.writeListEnd();
48543
          oprot.writeListEnd();
48517
        }
48544
        }
48518
        oprot.writeFieldEnd();
48545
        oprot.writeFieldEnd();
48519
      }
48546
      }
Line 49680... Line 49707...
49680
      }
49707
      }
49681
    }
49708
    }
49682
 
49709
 
49683
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
49710
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
49684
      try {
49711
      try {
49685
        // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
-
 
49686
        __isset_bit_vector = new BitSet(1);
-
 
49687
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
49712
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
49688
      } catch (org.apache.thrift.TException te) {
49713
      } catch (org.apache.thrift.TException te) {
49689
        throw new java.io.IOException(te);
49714
        throw new java.io.IOException(te);
49690
      }
49715
      }
49691
    }
49716
    }
Line 51113... Line 51138...
51113
      }
51138
      }
51114
    }
51139
    }
51115
 
51140
 
51116
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
51141
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
51117
      try {
51142
      try {
-
 
51143
        // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
-
 
51144
        __isset_bit_vector = new BitSet(1);
51118
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
51145
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
51119
      } catch (org.apache.thrift.TException te) {
51146
      } catch (org.apache.thrift.TException te) {
51120
        throw new java.io.IOException(te);
51147
        throw new java.io.IOException(te);
51121
      }
51148
      }
51122
    }
51149
    }
Line 53059... Line 53086...
53059
        }
53086
        }
53060
        switch (field.id) {
53087
        switch (field.id) {
53061
          case 0: // SUCCESS
53088
          case 0: // SUCCESS
53062
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
53089
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
53063
              {
53090
              {
53064
                org.apache.thrift.protocol.TList _list138 = iprot.readListBegin();
53091
                org.apache.thrift.protocol.TList _list142 = iprot.readListBegin();
53065
                this.success = new ArrayList<ReturnOrder>(_list138.size);
53092
                this.success = new ArrayList<ReturnOrder>(_list142.size);
53066
                for (int _i139 = 0; _i139 < _list138.size; ++_i139)
53093
                for (int _i143 = 0; _i143 < _list142.size; ++_i143)
53067
                {
53094
                {
53068
                  ReturnOrder _elem140; // required
53095
                  ReturnOrder _elem144; // required
53069
                  _elem140 = new ReturnOrder();
53096
                  _elem144 = new ReturnOrder();
53070
                  _elem140.read(iprot);
53097
                  _elem144.read(iprot);
53071
                  this.success.add(_elem140);
53098
                  this.success.add(_elem144);
53072
                }
53099
                }
53073
                iprot.readListEnd();
53100
                iprot.readListEnd();
53074
              }
53101
              }
53075
            } else { 
53102
            } else { 
53076
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
53103
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 53090... Line 53117...
53090
 
53117
 
53091
      if (this.isSetSuccess()) {
53118
      if (this.isSetSuccess()) {
53092
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
53119
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
53093
        {
53120
        {
53094
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
53121
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
53095
          for (ReturnOrder _iter141 : this.success)
53122
          for (ReturnOrder _iter145 : this.success)
53096
          {
53123
          {
53097
            _iter141.write(oprot);
53124
            _iter145.write(oprot);
53098
          }
53125
          }
53099
          oprot.writeListEnd();
53126
          oprot.writeListEnd();
53100
        }
53127
        }
53101
        oprot.writeFieldEnd();
53128
        oprot.writeFieldEnd();
53102
      }
53129
      }
Line 58077... Line 58104...
58077
        }
58104
        }
58078
        switch (field.id) {
58105
        switch (field.id) {
58079
          case 1: // COLLECTED_AMOUNT_MAP
58106
          case 1: // COLLECTED_AMOUNT_MAP
58080
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
58107
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
58081
              {
58108
              {
58082
                org.apache.thrift.protocol.TMap _map142 = iprot.readMapBegin();
58109
                org.apache.thrift.protocol.TMap _map146 = iprot.readMapBegin();
58083
                this.collectedAmountMap = new HashMap<String,Double>(2*_map142.size);
58110
                this.collectedAmountMap = new HashMap<String,Double>(2*_map146.size);
58084
                for (int _i143 = 0; _i143 < _map142.size; ++_i143)
58111
                for (int _i147 = 0; _i147 < _map146.size; ++_i147)
58085
                {
58112
                {
58086
                  String _key144; // required
58113
                  String _key148; // required
58087
                  double _val145; // required
58114
                  double _val149; // required
58088
                  _key144 = iprot.readString();
58115
                  _key148 = iprot.readString();
58089
                  _val145 = iprot.readDouble();
58116
                  _val149 = iprot.readDouble();
58090
                  this.collectedAmountMap.put(_key144, _val145);
58117
                  this.collectedAmountMap.put(_key148, _val149);
58091
                }
58118
                }
58092
                iprot.readMapEnd();
58119
                iprot.readMapEnd();
58093
              }
58120
              }
58094
            } else { 
58121
            } else { 
58095
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
58122
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 58132... Line 58159...
58132
      oprot.writeStructBegin(STRUCT_DESC);
58159
      oprot.writeStructBegin(STRUCT_DESC);
58133
      if (this.collectedAmountMap != null) {
58160
      if (this.collectedAmountMap != null) {
58134
        oprot.writeFieldBegin(COLLECTED_AMOUNT_MAP_FIELD_DESC);
58161
        oprot.writeFieldBegin(COLLECTED_AMOUNT_MAP_FIELD_DESC);
58135
        {
58162
        {
58136
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.DOUBLE, this.collectedAmountMap.size()));
58163
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.DOUBLE, this.collectedAmountMap.size()));
58137
          for (Map.Entry<String, Double> _iter146 : this.collectedAmountMap.entrySet())
58164
          for (Map.Entry<String, Double> _iter150 : this.collectedAmountMap.entrySet())
58138
          {
58165
          {
58139
            oprot.writeString(_iter146.getKey());
58166
            oprot.writeString(_iter150.getKey());
58140
            oprot.writeDouble(_iter146.getValue());
58167
            oprot.writeDouble(_iter150.getValue());
58141
          }
58168
          }
58142
          oprot.writeMapEnd();
58169
          oprot.writeMapEnd();
58143
        }
58170
        }
58144
        oprot.writeFieldEnd();
58171
        oprot.writeFieldEnd();
58145
      }
58172
      }
Line 58539... Line 58566...
58539
        }
58566
        }
58540
        switch (field.id) {
58567
        switch (field.id) {
58541
          case 0: // SUCCESS
58568
          case 0: // SUCCESS
58542
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
58569
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
58543
              {
58570
              {
58544
                org.apache.thrift.protocol.TMap _map147 = iprot.readMapBegin();
58571
                org.apache.thrift.protocol.TMap _map151 = iprot.readMapBegin();
58545
                this.success = new HashMap<String,String>(2*_map147.size);
58572
                this.success = new HashMap<String,String>(2*_map151.size);
58546
                for (int _i148 = 0; _i148 < _map147.size; ++_i148)
58573
                for (int _i152 = 0; _i152 < _map151.size; ++_i152)
58547
                {
58574
                {
58548
                  String _key149; // required
58575
                  String _key153; // required
58549
                  String _val150; // required
58576
                  String _val154; // required
58550
                  _key149 = iprot.readString();
58577
                  _key153 = iprot.readString();
58551
                  _val150 = iprot.readString();
58578
                  _val154 = iprot.readString();
58552
                  this.success.put(_key149, _val150);
58579
                  this.success.put(_key153, _val154);
58553
                }
58580
                }
58554
                iprot.readMapEnd();
58581
                iprot.readMapEnd();
58555
              }
58582
              }
58556
            } else { 
58583
            } else { 
58557
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
58584
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 58579... Line 58606...
58579
 
58606
 
58580
      if (this.isSetSuccess()) {
58607
      if (this.isSetSuccess()) {
58581
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
58608
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
58582
        {
58609
        {
58583
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.success.size()));
58610
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, this.success.size()));
58584
          for (Map.Entry<String, String> _iter151 : this.success.entrySet())
58611
          for (Map.Entry<String, String> _iter155 : this.success.entrySet())
58585
          {
58612
          {
58586
            oprot.writeString(_iter151.getKey());
58613
            oprot.writeString(_iter155.getKey());
58587
            oprot.writeString(_iter151.getValue());
58614
            oprot.writeString(_iter155.getValue());
58588
          }
58615
          }
58589
          oprot.writeMapEnd();
58616
          oprot.writeMapEnd();
58590
        }
58617
        }
58591
        oprot.writeFieldEnd();
58618
        oprot.writeFieldEnd();
58592
      } else if (this.isSetEx()) {
58619
      } else if (this.isSetEx()) {
Line 59198... Line 59225...
59198
        }
59225
        }
59199
        switch (field.id) {
59226
        switch (field.id) {
59200
          case 0: // SUCCESS
59227
          case 0: // SUCCESS
59201
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
59228
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
59202
              {
59229
              {
59203
                org.apache.thrift.protocol.TList _list152 = iprot.readListBegin();
59230
                org.apache.thrift.protocol.TList _list156 = iprot.readListBegin();
59204
                this.success = new ArrayList<Long>(_list152.size);
59231
                this.success = new ArrayList<Long>(_list156.size);
59205
                for (int _i153 = 0; _i153 < _list152.size; ++_i153)
59232
                for (int _i157 = 0; _i157 < _list156.size; ++_i157)
59206
                {
59233
                {
59207
                  long _elem154; // required
59234
                  long _elem158; // required
59208
                  _elem154 = iprot.readI64();
59235
                  _elem158 = iprot.readI64();
59209
                  this.success.add(_elem154);
59236
                  this.success.add(_elem158);
59210
                }
59237
                }
59211
                iprot.readListEnd();
59238
                iprot.readListEnd();
59212
              }
59239
              }
59213
            } else { 
59240
            } else { 
59214
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
59241
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 59228... Line 59255...
59228
 
59255
 
59229
      if (this.isSetSuccess()) {
59256
      if (this.isSetSuccess()) {
59230
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
59257
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
59231
        {
59258
        {
59232
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
59259
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
59233
          for (long _iter155 : this.success)
59260
          for (long _iter159 : this.success)
59234
          {
59261
          {
59235
            oprot.writeI64(_iter155);
59262
            oprot.writeI64(_iter159);
59236
          }
59263
          }
59237
          oprot.writeListEnd();
59264
          oprot.writeListEnd();
59238
        }
59265
        }
59239
        oprot.writeFieldEnd();
59266
        oprot.writeFieldEnd();
59240
      }
59267
      }
Line 60324... Line 60351...
60324
        }
60351
        }
60325
        switch (field.id) {
60352
        switch (field.id) {
60326
          case 0: // SUCCESS
60353
          case 0: // SUCCESS
60327
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
60354
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
60328
              {
60355
              {
60329
                org.apache.thrift.protocol.TMap _map156 = iprot.readMapBegin();
60356
                org.apache.thrift.protocol.TMap _map160 = iprot.readMapBegin();
60330
                this.success = new HashMap<Long,Long>(2*_map156.size);
60357
                this.success = new HashMap<Long,Long>(2*_map160.size);
60331
                for (int _i157 = 0; _i157 < _map156.size; ++_i157)
60358
                for (int _i161 = 0; _i161 < _map160.size; ++_i161)
60332
                {
60359
                {
60333
                  long _key158; // required
60360
                  long _key162; // required
60334
                  long _val159; // required
60361
                  long _val163; // required
60335
                  _key158 = iprot.readI64();
60362
                  _key162 = iprot.readI64();
60336
                  _val159 = iprot.readI64();
60363
                  _val163 = iprot.readI64();
60337
                  this.success.put(_key158, _val159);
60364
                  this.success.put(_key162, _val163);
60338
                }
60365
                }
60339
                iprot.readMapEnd();
60366
                iprot.readMapEnd();
60340
              }
60367
              }
60341
            } else { 
60368
            } else { 
60342
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
60369
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 60356... Line 60383...
60356
 
60383
 
60357
      if (this.isSetSuccess()) {
60384
      if (this.isSetSuccess()) {
60358
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
60385
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
60359
        {
60386
        {
60360
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.I64, this.success.size()));
60387
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.I64, this.success.size()));
60361
          for (Map.Entry<Long, Long> _iter160 : this.success.entrySet())
60388
          for (Map.Entry<Long, Long> _iter164 : this.success.entrySet())
60362
          {
60389
          {
60363
            oprot.writeI64(_iter160.getKey());
60390
            oprot.writeI64(_iter164.getKey());
60364
            oprot.writeI64(_iter160.getValue());
60391
            oprot.writeI64(_iter164.getValue());
60365
          }
60392
          }
60366
          oprot.writeMapEnd();
60393
          oprot.writeMapEnd();
60367
        }
60394
        }
60368
        oprot.writeFieldEnd();
60395
        oprot.writeFieldEnd();
60369
      }
60396
      }
Line 60657... Line 60684...
60657
        }
60684
        }
60658
        switch (field.id) {
60685
        switch (field.id) {
60659
          case 1: // ITEM_IDS
60686
          case 1: // ITEM_IDS
60660
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
60687
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
60661
              {
60688
              {
60662
                org.apache.thrift.protocol.TList _list161 = iprot.readListBegin();
60689
                org.apache.thrift.protocol.TList _list165 = iprot.readListBegin();
60663
                this.itemIds = new ArrayList<Long>(_list161.size);
60690
                this.itemIds = new ArrayList<Long>(_list165.size);
60664
                for (int _i162 = 0; _i162 < _list161.size; ++_i162)
60691
                for (int _i166 = 0; _i166 < _list165.size; ++_i166)
60665
                {
60692
                {
60666
                  long _elem163; // required
60693
                  long _elem167; // required
60667
                  _elem163 = iprot.readI64();
60694
                  _elem167 = iprot.readI64();
60668
                  this.itemIds.add(_elem163);
60695
                  this.itemIds.add(_elem167);
60669
                }
60696
                }
60670
                iprot.readListEnd();
60697
                iprot.readListEnd();
60671
              }
60698
              }
60672
            } else { 
60699
            } else { 
60673
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
60700
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 60688... Line 60715...
60688
      oprot.writeStructBegin(STRUCT_DESC);
60715
      oprot.writeStructBegin(STRUCT_DESC);
60689
      if (this.itemIds != null) {
60716
      if (this.itemIds != null) {
60690
        oprot.writeFieldBegin(ITEM_IDS_FIELD_DESC);
60717
        oprot.writeFieldBegin(ITEM_IDS_FIELD_DESC);
60691
        {
60718
        {
60692
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.itemIds.size()));
60719
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.itemIds.size()));
60693
          for (long _iter164 : this.itemIds)
60720
          for (long _iter168 : this.itemIds)
60694
          {
60721
          {
60695
            oprot.writeI64(_iter164);
60722
            oprot.writeI64(_iter168);
60696
          }
60723
          }
60697
          oprot.writeListEnd();
60724
          oprot.writeListEnd();
60698
        }
60725
        }
60699
        oprot.writeFieldEnd();
60726
        oprot.writeFieldEnd();
60700
      }
60727
      }
Line 60988... Line 61015...
60988
        }
61015
        }
60989
        switch (field.id) {
61016
        switch (field.id) {
60990
          case 0: // SUCCESS
61017
          case 0: // SUCCESS
60991
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
61018
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
60992
              {
61019
              {
60993
                org.apache.thrift.protocol.TList _list165 = iprot.readListBegin();
61020
                org.apache.thrift.protocol.TList _list169 = iprot.readListBegin();
60994
                this.success = new ArrayList<Order>(_list165.size);
61021
                this.success = new ArrayList<Order>(_list169.size);
60995
                for (int _i166 = 0; _i166 < _list165.size; ++_i166)
61022
                for (int _i170 = 0; _i170 < _list169.size; ++_i170)
60996
                {
61023
                {
60997
                  Order _elem167; // required
61024
                  Order _elem171; // required
60998
                  _elem167 = new Order();
61025
                  _elem171 = new Order();
60999
                  _elem167.read(iprot);
61026
                  _elem171.read(iprot);
61000
                  this.success.add(_elem167);
61027
                  this.success.add(_elem171);
61001
                }
61028
                }
61002
                iprot.readListEnd();
61029
                iprot.readListEnd();
61003
              }
61030
              }
61004
            } else { 
61031
            } else { 
61005
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
61032
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 61019... Line 61046...
61019
 
61046
 
61020
      if (this.isSetSuccess()) {
61047
      if (this.isSetSuccess()) {
61021
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
61048
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
61022
        {
61049
        {
61023
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
61050
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
61024
          for (Order _iter168 : this.success)
61051
          for (Order _iter172 : this.success)
61025
          {
61052
          {
61026
            _iter168.write(oprot);
61053
            _iter172.write(oprot);
61027
          }
61054
          }
61028
          oprot.writeListEnd();
61055
          oprot.writeListEnd();
61029
        }
61056
        }
61030
        oprot.writeFieldEnd();
61057
        oprot.writeFieldEnd();
61031
      }
61058
      }
Line 68977... Line 69004...
68977
        }
69004
        }
68978
        switch (field.id) {
69005
        switch (field.id) {
68979
          case 0: // SUCCESS
69006
          case 0: // SUCCESS
68980
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
69007
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
68981
              {
69008
              {
68982
                org.apache.thrift.protocol.TMap _map169 = iprot.readMapBegin();
69009
                org.apache.thrift.protocol.TMap _map173 = iprot.readMapBegin();
68983
                this.success = new HashMap<Integer,TimeoutSummary>(2*_map169.size);
69010
                this.success = new HashMap<Integer,TimeoutSummary>(2*_map173.size);
68984
                for (int _i170 = 0; _i170 < _map169.size; ++_i170)
69011
                for (int _i174 = 0; _i174 < _map173.size; ++_i174)
68985
                {
69012
                {
68986
                  int _key171; // required
69013
                  int _key175; // required
68987
                  TimeoutSummary _val172; // required
69014
                  TimeoutSummary _val176; // required
68988
                  _key171 = iprot.readI32();
69015
                  _key175 = iprot.readI32();
68989
                  _val172 = new TimeoutSummary();
69016
                  _val176 = new TimeoutSummary();
68990
                  _val172.read(iprot);
69017
                  _val176.read(iprot);
68991
                  this.success.put(_key171, _val172);
69018
                  this.success.put(_key175, _val176);
68992
                }
69019
                }
68993
                iprot.readMapEnd();
69020
                iprot.readMapEnd();
68994
              }
69021
              }
68995
            } else { 
69022
            } else { 
68996
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
69023
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 69018... Line 69045...
69018
 
69045
 
69019
      if (this.isSetSuccess()) {
69046
      if (this.isSetSuccess()) {
69020
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
69047
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
69021
        {
69048
        {
69022
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
69049
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
69023
          for (Map.Entry<Integer, TimeoutSummary> _iter173 : this.success.entrySet())
69050
          for (Map.Entry<Integer, TimeoutSummary> _iter177 : this.success.entrySet())
69024
          {
69051
          {
69025
            oprot.writeI32(_iter173.getKey());
69052
            oprot.writeI32(_iter177.getKey());
69026
            _iter173.getValue().write(oprot);
69053
            _iter177.getValue().write(oprot);
69027
          }
69054
          }
69028
          oprot.writeMapEnd();
69055
          oprot.writeMapEnd();
69029
        }
69056
        }
69030
        oprot.writeFieldEnd();
69057
        oprot.writeFieldEnd();
69031
      } else if (this.isSetEx()) {
69058
      } else if (this.isSetEx()) {
Line 71144... Line 71171...
71144
        }
71171
        }
71145
        switch (field.id) {
71172
        switch (field.id) {
71146
          case 0: // SUCCESS
71173
          case 0: // SUCCESS
71147
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
71174
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
71148
              {
71175
              {
71149
                org.apache.thrift.protocol.TList _list174 = iprot.readListBegin();
71176
                org.apache.thrift.protocol.TList _list178 = iprot.readListBegin();
71150
                this.success = new ArrayList<Order>(_list174.size);
71177
                this.success = new ArrayList<Order>(_list178.size);
71151
                for (int _i175 = 0; _i175 < _list174.size; ++_i175)
71178
                for (int _i179 = 0; _i179 < _list178.size; ++_i179)
71152
                {
71179
                {
71153
                  Order _elem176; // required
71180
                  Order _elem180; // required
71154
                  _elem176 = new Order();
71181
                  _elem180 = new Order();
71155
                  _elem176.read(iprot);
71182
                  _elem180.read(iprot);
71156
                  this.success.add(_elem176);
71183
                  this.success.add(_elem180);
71157
                }
71184
                }
71158
                iprot.readListEnd();
71185
                iprot.readListEnd();
71159
              }
71186
              }
71160
            } else { 
71187
            } else { 
71161
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
71188
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 71183... Line 71210...
71183
 
71210
 
71184
      if (this.isSetSuccess()) {
71211
      if (this.isSetSuccess()) {
71185
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
71212
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
71186
        {
71213
        {
71187
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
71214
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
71188
          for (Order _iter177 : this.success)
71215
          for (Order _iter181 : this.success)
71189
          {
71216
          {
71190
            _iter177.write(oprot);
71217
            _iter181.write(oprot);
71191
          }
71218
          }
71192
          oprot.writeListEnd();
71219
          oprot.writeListEnd();
71193
        }
71220
        }
71194
        oprot.writeFieldEnd();
71221
        oprot.writeFieldEnd();
71195
      } else if (this.isSetEx()) {
71222
      } else if (this.isSetEx()) {
Line 72023... Line 72050...
72023
        }
72050
        }
72024
        switch (field.id) {
72051
        switch (field.id) {
72025
          case 0: // SUCCESS
72052
          case 0: // SUCCESS
72026
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
72053
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
72027
              {
72054
              {
72028
                org.apache.thrift.protocol.TList _list178 = iprot.readListBegin();
72055
                org.apache.thrift.protocol.TList _list182 = iprot.readListBegin();
72029
                this.success = new ArrayList<Order>(_list178.size);
72056
                this.success = new ArrayList<Order>(_list182.size);
72030
                for (int _i179 = 0; _i179 < _list178.size; ++_i179)
72057
                for (int _i183 = 0; _i183 < _list182.size; ++_i183)
72031
                {
72058
                {
72032
                  Order _elem180; // required
72059
                  Order _elem184; // required
72033
                  _elem180 = new Order();
72060
                  _elem184 = new Order();
72034
                  _elem180.read(iprot);
72061
                  _elem184.read(iprot);
72035
                  this.success.add(_elem180);
72062
                  this.success.add(_elem184);
72036
                }
72063
                }
72037
                iprot.readListEnd();
72064
                iprot.readListEnd();
72038
              }
72065
              }
72039
            } else { 
72066
            } else { 
72040
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
72067
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 72062... Line 72089...
72062
 
72089
 
72063
      if (this.isSetSuccess()) {
72090
      if (this.isSetSuccess()) {
72064
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
72091
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
72065
        {
72092
        {
72066
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
72093
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
72067
          for (Order _iter181 : this.success)
72094
          for (Order _iter185 : this.success)
72068
          {
72095
          {
72069
            _iter181.write(oprot);
72096
            _iter185.write(oprot);
72070
          }
72097
          }
72071
          oprot.writeListEnd();
72098
          oprot.writeListEnd();
72072
        }
72099
        }
72073
        oprot.writeFieldEnd();
72100
        oprot.writeFieldEnd();
72074
      } else if (this.isSetEx()) {
72101
      } else if (this.isSetEx()) {
Line 72642... Line 72669...
72642
        }
72669
        }
72643
        switch (field.id) {
72670
        switch (field.id) {
72644
          case 0: // SUCCESS
72671
          case 0: // SUCCESS
72645
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
72672
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
72646
              {
72673
              {
72647
                org.apache.thrift.protocol.TList _list182 = iprot.readListBegin();
72674
                org.apache.thrift.protocol.TList _list186 = iprot.readListBegin();
72648
                this.success = new ArrayList<Order>(_list182.size);
72675
                this.success = new ArrayList<Order>(_list186.size);
72649
                for (int _i183 = 0; _i183 < _list182.size; ++_i183)
72676
                for (int _i187 = 0; _i187 < _list186.size; ++_i187)
72650
                {
72677
                {
72651
                  Order _elem184; // required
72678
                  Order _elem188; // required
72652
                  _elem184 = new Order();
72679
                  _elem188 = new Order();
72653
                  _elem184.read(iprot);
72680
                  _elem188.read(iprot);
72654
                  this.success.add(_elem184);
72681
                  this.success.add(_elem188);
72655
                }
72682
                }
72656
                iprot.readListEnd();
72683
                iprot.readListEnd();
72657
              }
72684
              }
72658
            } else { 
72685
            } else { 
72659
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
72686
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 72681... Line 72708...
72681
 
72708
 
72682
      if (this.isSetSuccess()) {
72709
      if (this.isSetSuccess()) {
72683
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
72710
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
72684
        {
72711
        {
72685
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
72712
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
72686
          for (Order _iter185 : this.success)
72713
          for (Order _iter189 : this.success)
72687
          {
72714
          {
72688
            _iter185.write(oprot);
72715
            _iter189.write(oprot);
72689
          }
72716
          }
72690
          oprot.writeListEnd();
72717
          oprot.writeListEnd();
72691
        }
72718
        }
72692
        oprot.writeFieldEnd();
72719
        oprot.writeFieldEnd();
72693
      } else if (this.isSetEx()) {
72720
      } else if (this.isSetEx()) {
Line 73438... Line 73465...
73438
        }
73465
        }
73439
        switch (field.id) {
73466
        switch (field.id) {
73440
          case 0: // SUCCESS
73467
          case 0: // SUCCESS
73441
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
73468
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
73442
              {
73469
              {
73443
                org.apache.thrift.protocol.TList _list186 = iprot.readListBegin();
73470
                org.apache.thrift.protocol.TList _list190 = iprot.readListBegin();
73444
                this.success = new ArrayList<Order>(_list186.size);
73471
                this.success = new ArrayList<Order>(_list190.size);
73445
                for (int _i187 = 0; _i187 < _list186.size; ++_i187)
73472
                for (int _i191 = 0; _i191 < _list190.size; ++_i191)
73446
                {
73473
                {
73447
                  Order _elem188; // required
73474
                  Order _elem192; // required
73448
                  _elem188 = new Order();
73475
                  _elem192 = new Order();
73449
                  _elem188.read(iprot);
73476
                  _elem192.read(iprot);
73450
                  this.success.add(_elem188);
73477
                  this.success.add(_elem192);
73451
                }
73478
                }
73452
                iprot.readListEnd();
73479
                iprot.readListEnd();
73453
              }
73480
              }
73454
            } else { 
73481
            } else { 
73455
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
73482
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 73477... Line 73504...
73477
 
73504
 
73478
      if (this.isSetSuccess()) {
73505
      if (this.isSetSuccess()) {
73479
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
73506
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
73480
        {
73507
        {
73481
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
73508
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
73482
          for (Order _iter189 : this.success)
73509
          for (Order _iter193 : this.success)
73483
          {
73510
          {
73484
            _iter189.write(oprot);
73511
            _iter193.write(oprot);
73485
          }
73512
          }
73486
          oprot.writeListEnd();
73513
          oprot.writeListEnd();
73487
        }
73514
        }
73488
        oprot.writeFieldEnd();
73515
        oprot.writeFieldEnd();
73489
      } else if (this.isSetEx()) {
73516
      } else if (this.isSetEx()) {
Line 73794... Line 73821...
73794
        }
73821
        }
73795
        switch (field.id) {
73822
        switch (field.id) {
73796
          case 1: // MAP_AWBAND_AMOUNT
73823
          case 1: // MAP_AWBAND_AMOUNT
73797
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
73824
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
73798
              {
73825
              {
73799
                org.apache.thrift.protocol.TMap _map190 = iprot.readMapBegin();
73826
                org.apache.thrift.protocol.TMap _map194 = iprot.readMapBegin();
73800
                this.mapAWBAndAmount = new HashMap<Long,Double>(2*_map190.size);
73827
                this.mapAWBAndAmount = new HashMap<Long,Double>(2*_map194.size);
73801
                for (int _i191 = 0; _i191 < _map190.size; ++_i191)
73828
                for (int _i195 = 0; _i195 < _map194.size; ++_i195)
73802
                {
73829
                {
73803
                  long _key192; // required
73830
                  long _key196; // required
73804
                  double _val193; // required
73831
                  double _val197; // required
73805
                  _key192 = iprot.readI64();
73832
                  _key196 = iprot.readI64();
73806
                  _val193 = iprot.readDouble();
73833
                  _val197 = iprot.readDouble();
73807
                  this.mapAWBAndAmount.put(_key192, _val193);
73834
                  this.mapAWBAndAmount.put(_key196, _val197);
73808
                }
73835
                }
73809
                iprot.readMapEnd();
73836
                iprot.readMapEnd();
73810
              }
73837
              }
73811
            } else { 
73838
            } else { 
73812
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
73839
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 73827... Line 73854...
73827
      oprot.writeStructBegin(STRUCT_DESC);
73854
      oprot.writeStructBegin(STRUCT_DESC);
73828
      if (this.mapAWBAndAmount != null) {
73855
      if (this.mapAWBAndAmount != null) {
73829
        oprot.writeFieldBegin(MAP_AWBAND_AMOUNT_FIELD_DESC);
73856
        oprot.writeFieldBegin(MAP_AWBAND_AMOUNT_FIELD_DESC);
73830
        {
73857
        {
73831
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.DOUBLE, this.mapAWBAndAmount.size()));
73858
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.DOUBLE, this.mapAWBAndAmount.size()));
73832
          for (Map.Entry<Long, Double> _iter194 : this.mapAWBAndAmount.entrySet())
73859
          for (Map.Entry<Long, Double> _iter198 : this.mapAWBAndAmount.entrySet())
73833
          {
73860
          {
73834
            oprot.writeI64(_iter194.getKey());
73861
            oprot.writeI64(_iter198.getKey());
73835
            oprot.writeDouble(_iter194.getValue());
73862
            oprot.writeDouble(_iter198.getValue());
73836
          }
73863
          }
73837
          oprot.writeMapEnd();
73864
          oprot.writeMapEnd();
73838
        }
73865
        }
73839
        oprot.writeFieldEnd();
73866
        oprot.writeFieldEnd();
73840
      }
73867
      }
Line 77294... Line 77321...
77294
        }
77321
        }
77295
        switch (field.id) {
77322
        switch (field.id) {
77296
          case 0: // SUCCESS
77323
          case 0: // SUCCESS
77297
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
77324
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
77298
              {
77325
              {
77299
                org.apache.thrift.protocol.TMap _map195 = iprot.readMapBegin();
77326
                org.apache.thrift.protocol.TMap _map199 = iprot.readMapBegin();
77300
                this.success = new HashMap<Long,String>(2*_map195.size);
77327
                this.success = new HashMap<Long,String>(2*_map199.size);
77301
                for (int _i196 = 0; _i196 < _map195.size; ++_i196)
77328
                for (int _i200 = 0; _i200 < _map199.size; ++_i200)
77302
                {
77329
                {
77303
                  long _key197; // required
77330
                  long _key201; // required
77304
                  String _val198; // required
77331
                  String _val202; // required
77305
                  _key197 = iprot.readI64();
77332
                  _key201 = iprot.readI64();
77306
                  _val198 = iprot.readString();
77333
                  _val202 = iprot.readString();
77307
                  this.success.put(_key197, _val198);
77334
                  this.success.put(_key201, _val202);
77308
                }
77335
                }
77309
                iprot.readMapEnd();
77336
                iprot.readMapEnd();
77310
              }
77337
              }
77311
            } else { 
77338
            } else { 
77312
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
77339
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 77334... Line 77361...
77334
 
77361
 
77335
      if (this.isSetSuccess()) {
77362
      if (this.isSetSuccess()) {
77336
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
77363
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
77337
        {
77364
        {
77338
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRING, this.success.size()));
77365
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRING, this.success.size()));
77339
          for (Map.Entry<Long, String> _iter199 : this.success.entrySet())
77366
          for (Map.Entry<Long, String> _iter203 : this.success.entrySet())
77340
          {
77367
          {
77341
            oprot.writeI64(_iter199.getKey());
77368
            oprot.writeI64(_iter203.getKey());
77342
            oprot.writeString(_iter199.getValue());
77369
            oprot.writeString(_iter203.getValue());
77343
          }
77370
          }
77344
          oprot.writeMapEnd();
77371
          oprot.writeMapEnd();
77345
        }
77372
        }
77346
        oprot.writeFieldEnd();
77373
        oprot.writeFieldEnd();
77347
      } else if (this.isSetEx()) {
77374
      } else if (this.isSetEx()) {
Line 79438... Line 79465...
79438
        }
79465
        }
79439
        switch (field.id) {
79466
        switch (field.id) {
79440
          case 0: // SUCCESS
79467
          case 0: // SUCCESS
79441
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
79468
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
79442
              {
79469
              {
79443
                org.apache.thrift.protocol.TList _list200 = iprot.readListBegin();
79470
                org.apache.thrift.protocol.TList _list204 = iprot.readListBegin();
79444
                this.success = new ArrayList<PaymentSettlement>(_list200.size);
79471
                this.success = new ArrayList<PaymentSettlement>(_list204.size);
79445
                for (int _i201 = 0; _i201 < _list200.size; ++_i201)
79472
                for (int _i205 = 0; _i205 < _list204.size; ++_i205)
79446
                {
79473
                {
79447
                  PaymentSettlement _elem202; // required
79474
                  PaymentSettlement _elem206; // required
79448
                  _elem202 = new PaymentSettlement();
79475
                  _elem206 = new PaymentSettlement();
79449
                  _elem202.read(iprot);
79476
                  _elem206.read(iprot);
79450
                  this.success.add(_elem202);
79477
                  this.success.add(_elem206);
79451
                }
79478
                }
79452
                iprot.readListEnd();
79479
                iprot.readListEnd();
79453
              }
79480
              }
79454
            } else { 
79481
            } else { 
79455
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
79482
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 79477... Line 79504...
79477
 
79504
 
79478
      if (this.isSetSuccess()) {
79505
      if (this.isSetSuccess()) {
79479
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
79506
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
79480
        {
79507
        {
79481
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
79508
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
79482
          for (PaymentSettlement _iter203 : this.success)
79509
          for (PaymentSettlement _iter207 : this.success)
79483
          {
79510
          {
79484
            _iter203.write(oprot);
79511
            _iter207.write(oprot);
79485
          }
79512
          }
79486
          oprot.writeListEnd();
79513
          oprot.writeListEnd();
79487
        }
79514
        }
79488
        oprot.writeFieldEnd();
79515
        oprot.writeFieldEnd();
79489
      } else if (this.isSetEx()) {
79516
      } else if (this.isSetEx()) {
Line 79789... Line 79816...
79789
        }
79816
        }
79790
        switch (field.id) {
79817
        switch (field.id) {
79791
          case 1: // ORDER_IDS
79818
          case 1: // ORDER_IDS
79792
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
79819
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
79793
              {
79820
              {
79794
                org.apache.thrift.protocol.TList _list204 = iprot.readListBegin();
79821
                org.apache.thrift.protocol.TList _list208 = iprot.readListBegin();
79795
                this.orderIds = new ArrayList<Long>(_list204.size);
79822
                this.orderIds = new ArrayList<Long>(_list208.size);
79796
                for (int _i205 = 0; _i205 < _list204.size; ++_i205)
79823
                for (int _i209 = 0; _i209 < _list208.size; ++_i209)
79797
                {
79824
                {
79798
                  long _elem206; // required
79825
                  long _elem210; // required
79799
                  _elem206 = iprot.readI64();
79826
                  _elem210 = iprot.readI64();
79800
                  this.orderIds.add(_elem206);
79827
                  this.orderIds.add(_elem210);
79801
                }
79828
                }
79802
                iprot.readListEnd();
79829
                iprot.readListEnd();
79803
              }
79830
              }
79804
            } else { 
79831
            } else { 
79805
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
79832
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 79820... Line 79847...
79820
      oprot.writeStructBegin(STRUCT_DESC);
79847
      oprot.writeStructBegin(STRUCT_DESC);
79821
      if (this.orderIds != null) {
79848
      if (this.orderIds != null) {
79822
        oprot.writeFieldBegin(ORDER_IDS_FIELD_DESC);
79849
        oprot.writeFieldBegin(ORDER_IDS_FIELD_DESC);
79823
        {
79850
        {
79824
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.orderIds.size()));
79851
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.orderIds.size()));
79825
          for (long _iter207 : this.orderIds)
79852
          for (long _iter211 : this.orderIds)
79826
          {
79853
          {
79827
            oprot.writeI64(_iter207);
79854
            oprot.writeI64(_iter211);
79828
          }
79855
          }
79829
          oprot.writeListEnd();
79856
          oprot.writeListEnd();
79830
        }
79857
        }
79831
        oprot.writeFieldEnd();
79858
        oprot.writeFieldEnd();
79832
      }
79859
      }
Line 80188... Line 80215...
80188
        }
80215
        }
80189
        switch (field.id) {
80216
        switch (field.id) {
80190
          case 0: // SUCCESS
80217
          case 0: // SUCCESS
80191
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
80218
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
80192
              {
80219
              {
80193
                org.apache.thrift.protocol.TList _list208 = iprot.readListBegin();
80220
                org.apache.thrift.protocol.TList _list212 = iprot.readListBegin();
80194
                this.success = new ArrayList<Long>(_list208.size);
80221
                this.success = new ArrayList<Long>(_list212.size);
80195
                for (int _i209 = 0; _i209 < _list208.size; ++_i209)
80222
                for (int _i213 = 0; _i213 < _list212.size; ++_i213)
80196
                {
80223
                {
80197
                  long _elem210; // required
80224
                  long _elem214; // required
80198
                  _elem210 = iprot.readI64();
80225
                  _elem214 = iprot.readI64();
80199
                  this.success.add(_elem210);
80226
                  this.success.add(_elem214);
80200
                }
80227
                }
80201
                iprot.readListEnd();
80228
                iprot.readListEnd();
80202
              }
80229
              }
80203
            } else { 
80230
            } else { 
80204
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
80231
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 80226... Line 80253...
80226
 
80253
 
80227
      if (this.isSetSuccess()) {
80254
      if (this.isSetSuccess()) {
80228
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
80255
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
80229
        {
80256
        {
80230
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
80257
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
80231
          for (long _iter211 : this.success)
80258
          for (long _iter215 : this.success)
80232
          {
80259
          {
80233
            oprot.writeI64(_iter211);
80260
            oprot.writeI64(_iter215);
80234
          }
80261
          }
80235
          oprot.writeListEnd();
80262
          oprot.writeListEnd();
80236
        }
80263
        }
80237
        oprot.writeFieldEnd();
80264
        oprot.writeFieldEnd();
80238
      } else if (this.isSetEx()) {
80265
      } else if (this.isSetEx()) {
Line 80682... Line 80709...
80682
        }
80709
        }
80683
        switch (field.id) {
80710
        switch (field.id) {
80684
          case 1: // ITEM_ID_QUANTITY_MAP
80711
          case 1: // ITEM_ID_QUANTITY_MAP
80685
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
80712
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
80686
              {
80713
              {
80687
                org.apache.thrift.protocol.TMap _map212 = iprot.readMapBegin();
80714
                org.apache.thrift.protocol.TMap _map216 = iprot.readMapBegin();
80688
                this.itemIdQuantityMap = new HashMap<Long,Long>(2*_map212.size);
80715
                this.itemIdQuantityMap = new HashMap<Long,Long>(2*_map216.size);
80689
                for (int _i213 = 0; _i213 < _map212.size; ++_i213)
80716
                for (int _i217 = 0; _i217 < _map216.size; ++_i217)
80690
                {
80717
                {
80691
                  long _key214; // required
80718
                  long _key218; // required
80692
                  long _val215; // required
80719
                  long _val219; // required
80693
                  _key214 = iprot.readI64();
80720
                  _key218 = iprot.readI64();
80694
                  _val215 = iprot.readI64();
80721
                  _val219 = iprot.readI64();
80695
                  this.itemIdQuantityMap.put(_key214, _val215);
80722
                  this.itemIdQuantityMap.put(_key218, _val219);
80696
                }
80723
                }
80697
                iprot.readMapEnd();
80724
                iprot.readMapEnd();
80698
              }
80725
              }
80699
            } else { 
80726
            } else { 
80700
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
80727
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 80731... Line 80758...
80731
      oprot.writeStructBegin(STRUCT_DESC);
80758
      oprot.writeStructBegin(STRUCT_DESC);
80732
      if (this.itemIdQuantityMap != null) {
80759
      if (this.itemIdQuantityMap != null) {
80733
        oprot.writeFieldBegin(ITEM_ID_QUANTITY_MAP_FIELD_DESC);
80760
        oprot.writeFieldBegin(ITEM_ID_QUANTITY_MAP_FIELD_DESC);
80734
        {
80761
        {
80735
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.I64, this.itemIdQuantityMap.size()));
80762
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.I64, this.itemIdQuantityMap.size()));
80736
          for (Map.Entry<Long, Long> _iter216 : this.itemIdQuantityMap.entrySet())
80763
          for (Map.Entry<Long, Long> _iter220 : this.itemIdQuantityMap.entrySet())
80737
          {
80764
          {
80738
            oprot.writeI64(_iter216.getKey());
80765
            oprot.writeI64(_iter220.getKey());
80739
            oprot.writeI64(_iter216.getValue());
80766
            oprot.writeI64(_iter220.getValue());
80740
          }
80767
          }
80741
          oprot.writeMapEnd();
80768
          oprot.writeMapEnd();
80742
        }
80769
        }
80743
        oprot.writeFieldEnd();
80770
        oprot.writeFieldEnd();
80744
      }
80771
      }