Subversion Repositories SmartDukaan

Rev

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

Rev 7382 Rev 7438
Line 39... Line 39...
39
     * 
39
     * 
40
     * @param itemId
40
     * @param itemId
41
     */
41
     */
42
    public ItemShippingInfo isActive(long itemId) throws CatalogServiceException, org.apache.thrift.TException;
42
    public ItemShippingInfo isActive(long itemId) throws CatalogServiceException, org.apache.thrift.TException;
43
 
43
 
-
 
44
    public Map<Long,Boolean> getItemsStatus(List<Long> itemIds) throws CatalogServiceException, org.apache.thrift.TException;
-
 
45
 
44
    public String getItemStatusDescription(long itemId) throws CatalogServiceException, org.apache.thrift.TException;
46
    public String getItemStatusDescription(long itemId) throws CatalogServiceException, org.apache.thrift.TException;
45
 
47
 
46
    public void startItemOn(long item_id, long timestamp) throws CatalogServiceException, org.apache.thrift.TException;
48
    public void startItemOn(long item_id, long timestamp) throws CatalogServiceException, org.apache.thrift.TException;
47
 
49
 
48
    public void retireItemOn(long item_id, long timestamp) throws CatalogServiceException, org.apache.thrift.TException;
50
    public void retireItemOn(long item_id, long timestamp) throws CatalogServiceException, org.apache.thrift.TException;
Line 416... Line 418...
416
 
418
 
417
    public void updateItem(Item item, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.updateItem_call> resultHandler) throws org.apache.thrift.TException;
419
    public void updateItem(Item item, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.updateItem_call> resultHandler) throws org.apache.thrift.TException;
418
 
420
 
419
    public void isActive(long itemId, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.isActive_call> resultHandler) throws org.apache.thrift.TException;
421
    public void isActive(long itemId, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.isActive_call> resultHandler) throws org.apache.thrift.TException;
420
 
422
 
-
 
423
    public void getItemsStatus(List<Long> itemIds, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getItemsStatus_call> resultHandler) throws org.apache.thrift.TException;
-
 
424
 
421
    public void getItemStatusDescription(long itemId, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getItemStatusDescription_call> resultHandler) throws org.apache.thrift.TException;
425
    public void getItemStatusDescription(long itemId, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getItemStatusDescription_call> resultHandler) throws org.apache.thrift.TException;
422
 
426
 
423
    public void startItemOn(long item_id, long timestamp, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.startItemOn_call> resultHandler) throws org.apache.thrift.TException;
427
    public void startItemOn(long item_id, long timestamp, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.startItemOn_call> resultHandler) throws org.apache.thrift.TException;
424
 
428
 
425
    public void retireItemOn(long item_id, long timestamp, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.retireItemOn_call> resultHandler) throws org.apache.thrift.TException;
429
    public void retireItemOn(long item_id, long timestamp, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.retireItemOn_call> resultHandler) throws org.apache.thrift.TException;
Line 702... Line 706...
702
        throw result.isex;
706
        throw result.isex;
703
      }
707
      }
704
      throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "isActive failed: unknown result");
708
      throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "isActive failed: unknown result");
705
    }
709
    }
706
 
710
 
-
 
711
    public Map<Long,Boolean> getItemsStatus(List<Long> itemIds) throws CatalogServiceException, org.apache.thrift.TException
-
 
712
    {
-
 
713
      send_getItemsStatus(itemIds);
-
 
714
      return recv_getItemsStatus();
-
 
715
    }
-
 
716
 
-
 
717
    public void send_getItemsStatus(List<Long> itemIds) throws org.apache.thrift.TException
-
 
718
    {
-
 
719
      getItemsStatus_args args = new getItemsStatus_args();
-
 
720
      args.setItemIds(itemIds);
-
 
721
      sendBase("getItemsStatus", args);
-
 
722
    }
-
 
723
 
-
 
724
    public Map<Long,Boolean> recv_getItemsStatus() throws CatalogServiceException, org.apache.thrift.TException
-
 
725
    {
-
 
726
      getItemsStatus_result result = new getItemsStatus_result();
-
 
727
      receiveBase(result, "getItemsStatus");
-
 
728
      if (result.isSetSuccess()) {
-
 
729
        return result.success;
-
 
730
      }
-
 
731
      if (result.isex != null) {
-
 
732
        throw result.isex;
-
 
733
      }
-
 
734
      throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getItemsStatus failed: unknown result");
-
 
735
    }
-
 
736
 
707
    public String getItemStatusDescription(long itemId) throws CatalogServiceException, org.apache.thrift.TException
737
    public String getItemStatusDescription(long itemId) throws CatalogServiceException, org.apache.thrift.TException
708
    {
738
    {
709
      send_getItemStatusDescription(itemId);
739
      send_getItemStatusDescription(itemId);
710
      return recv_getItemStatusDescription();
740
      return recv_getItemStatusDescription();
711
    }
741
    }
Line 3065... Line 3095...
3065
        org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
3095
        org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
3066
        return (new Client(prot)).recv_isActive();
3096
        return (new Client(prot)).recv_isActive();
3067
      }
3097
      }
3068
    }
3098
    }
3069
 
3099
 
-
 
3100
    public void getItemsStatus(List<Long> itemIds, org.apache.thrift.async.AsyncMethodCallback<getItemsStatus_call> resultHandler) throws org.apache.thrift.TException {
-
 
3101
      checkReady();
-
 
3102
      getItemsStatus_call method_call = new getItemsStatus_call(itemIds, resultHandler, this, ___protocolFactory, ___transport);
-
 
3103
      this.___currentMethod = method_call;
-
 
3104
      ___manager.call(method_call);
-
 
3105
    }
-
 
3106
 
-
 
3107
    public static class getItemsStatus_call extends org.apache.thrift.async.TAsyncMethodCall {
-
 
3108
      private List<Long> itemIds;
-
 
3109
      public getItemsStatus_call(List<Long> itemIds, org.apache.thrift.async.AsyncMethodCallback<getItemsStatus_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 {
-
 
3110
        super(client, protocolFactory, transport, resultHandler, false);
-
 
3111
        this.itemIds = itemIds;
-
 
3112
      }
-
 
3113
 
-
 
3114
      public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
-
 
3115
        prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getItemsStatus", org.apache.thrift.protocol.TMessageType.CALL, 0));
-
 
3116
        getItemsStatus_args args = new getItemsStatus_args();
-
 
3117
        args.setItemIds(itemIds);
-
 
3118
        args.write(prot);
-
 
3119
        prot.writeMessageEnd();
-
 
3120
      }
-
 
3121
 
-
 
3122
      public Map<Long,Boolean> getResult() throws CatalogServiceException, org.apache.thrift.TException {
-
 
3123
        if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
-
 
3124
          throw new IllegalStateException("Method call not finished!");
-
 
3125
        }
-
 
3126
        org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
-
 
3127
        org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
-
 
3128
        return (new Client(prot)).recv_getItemsStatus();
-
 
3129
      }
-
 
3130
    }
-
 
3131
 
3070
    public void getItemStatusDescription(long itemId, org.apache.thrift.async.AsyncMethodCallback<getItemStatusDescription_call> resultHandler) throws org.apache.thrift.TException {
3132
    public void getItemStatusDescription(long itemId, org.apache.thrift.async.AsyncMethodCallback<getItemStatusDescription_call> resultHandler) throws org.apache.thrift.TException {
3071
      checkReady();
3133
      checkReady();
3072
      getItemStatusDescription_call method_call = new getItemStatusDescription_call(itemId, resultHandler, this, ___protocolFactory, ___transport);
3134
      getItemStatusDescription_call method_call = new getItemStatusDescription_call(itemId, resultHandler, this, ___protocolFactory, ___transport);
3073
      this.___currentMethod = method_call;
3135
      this.___currentMethod = method_call;
3074
      ___manager.call(method_call);
3136
      ___manager.call(method_call);
Line 6189... Line 6251...
6189
 
6251
 
6190
    private static <I extends Iface> Map<String,  org.apache.thrift.ProcessFunction<I, ? extends  org.apache.thrift.TBase>> getProcessMap(Map<String,  org.apache.thrift.ProcessFunction<I, ? extends  org.apache.thrift.TBase>> processMap) {
6252
    private static <I extends Iface> Map<String,  org.apache.thrift.ProcessFunction<I, ? extends  org.apache.thrift.TBase>> getProcessMap(Map<String,  org.apache.thrift.ProcessFunction<I, ? extends  org.apache.thrift.TBase>> processMap) {
6191
      processMap.put("addItem", new addItem());
6253
      processMap.put("addItem", new addItem());
6192
      processMap.put("updateItem", new updateItem());
6254
      processMap.put("updateItem", new updateItem());
6193
      processMap.put("isActive", new isActive());
6255
      processMap.put("isActive", new isActive());
-
 
6256
      processMap.put("getItemsStatus", new getItemsStatus());
6194
      processMap.put("getItemStatusDescription", new getItemStatusDescription());
6257
      processMap.put("getItemStatusDescription", new getItemStatusDescription());
6195
      processMap.put("startItemOn", new startItemOn());
6258
      processMap.put("startItemOn", new startItemOn());
6196
      processMap.put("retireItemOn", new retireItemOn());
6259
      processMap.put("retireItemOn", new retireItemOn());
6197
      processMap.put("changeItemStatus", new changeItemStatus());
6260
      processMap.put("changeItemStatus", new changeItemStatus());
6198
      processMap.put("getItem", new getItem());
6261
      processMap.put("getItem", new getItem());
Line 6347... Line 6410...
6347
        }
6410
        }
6348
        return result;
6411
        return result;
6349
      }
6412
      }
6350
    }
6413
    }
6351
 
6414
 
-
 
6415
    private static class getItemsStatus<I extends Iface> extends org.apache.thrift.ProcessFunction<I, getItemsStatus_args> {
-
 
6416
      public getItemsStatus() {
-
 
6417
        super("getItemsStatus");
-
 
6418
      }
-
 
6419
 
-
 
6420
      protected getItemsStatus_args getEmptyArgsInstance() {
-
 
6421
        return new getItemsStatus_args();
-
 
6422
      }
-
 
6423
 
-
 
6424
      protected getItemsStatus_result getResult(I iface, getItemsStatus_args args) throws org.apache.thrift.TException {
-
 
6425
        getItemsStatus_result result = new getItemsStatus_result();
-
 
6426
        try {
-
 
6427
          result.success = iface.getItemsStatus(args.itemIds);
-
 
6428
        } catch (CatalogServiceException isex) {
-
 
6429
          result.isex = isex;
-
 
6430
        }
-
 
6431
        return result;
-
 
6432
      }
-
 
6433
    }
-
 
6434
 
6352
    private static class getItemStatusDescription<I extends Iface> extends org.apache.thrift.ProcessFunction<I, getItemStatusDescription_args> {
6435
    private static class getItemStatusDescription<I extends Iface> extends org.apache.thrift.ProcessFunction<I, getItemStatusDescription_args> {
6353
      public getItemStatusDescription() {
6436
      public getItemStatusDescription() {
6354
        super("getItemStatusDescription");
6437
        super("getItemStatusDescription");
6355
      }
6438
      }
6356
 
6439
 
Line 10028... Line 10111...
10028
      }
10111
      }
10029
    }
10112
    }
10030
 
10113
 
10031
  }
10114
  }
10032
 
10115
 
-
 
10116
  public static class getItemsStatus_args implements org.apache.thrift.TBase<getItemsStatus_args, getItemsStatus_args._Fields>, java.io.Serializable, Cloneable   {
-
 
10117
    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getItemsStatus_args");
-
 
10118
 
-
 
10119
    private static final org.apache.thrift.protocol.TField ITEM_IDS_FIELD_DESC = new org.apache.thrift.protocol.TField("itemIds", org.apache.thrift.protocol.TType.LIST, (short)1);
-
 
10120
 
-
 
10121
    private List<Long> itemIds; // required
-
 
10122
 
-
 
10123
    /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
-
 
10124
    public enum _Fields implements org.apache.thrift.TFieldIdEnum {
-
 
10125
      ITEM_IDS((short)1, "itemIds");
-
 
10126
 
-
 
10127
      private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
-
 
10128
 
-
 
10129
      static {
-
 
10130
        for (_Fields field : EnumSet.allOf(_Fields.class)) {
-
 
10131
          byName.put(field.getFieldName(), field);
-
 
10132
        }
-
 
10133
      }
-
 
10134
 
-
 
10135
      /**
-
 
10136
       * Find the _Fields constant that matches fieldId, or null if its not found.
-
 
10137
       */
-
 
10138
      public static _Fields findByThriftId(int fieldId) {
-
 
10139
        switch(fieldId) {
-
 
10140
          case 1: // ITEM_IDS
-
 
10141
            return ITEM_IDS;
-
 
10142
          default:
-
 
10143
            return null;
-
 
10144
        }
-
 
10145
      }
-
 
10146
 
-
 
10147
      /**
-
 
10148
       * Find the _Fields constant that matches fieldId, throwing an exception
-
 
10149
       * if it is not found.
-
 
10150
       */
-
 
10151
      public static _Fields findByThriftIdOrThrow(int fieldId) {
-
 
10152
        _Fields fields = findByThriftId(fieldId);
-
 
10153
        if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
-
 
10154
        return fields;
-
 
10155
      }
-
 
10156
 
-
 
10157
      /**
-
 
10158
       * Find the _Fields constant that matches name, or null if its not found.
-
 
10159
       */
-
 
10160
      public static _Fields findByName(String name) {
-
 
10161
        return byName.get(name);
-
 
10162
      }
-
 
10163
 
-
 
10164
      private final short _thriftId;
-
 
10165
      private final String _fieldName;
-
 
10166
 
-
 
10167
      _Fields(short thriftId, String fieldName) {
-
 
10168
        _thriftId = thriftId;
-
 
10169
        _fieldName = fieldName;
-
 
10170
      }
-
 
10171
 
-
 
10172
      public short getThriftFieldId() {
-
 
10173
        return _thriftId;
-
 
10174
      }
-
 
10175
 
-
 
10176
      public String getFieldName() {
-
 
10177
        return _fieldName;
-
 
10178
      }
-
 
10179
    }
-
 
10180
 
-
 
10181
    // isset id assignments
-
 
10182
 
-
 
10183
    public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
-
 
10184
    static {
-
 
10185
      Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
-
 
10186
      tmpMap.put(_Fields.ITEM_IDS, new org.apache.thrift.meta_data.FieldMetaData("itemIds", org.apache.thrift.TFieldRequirementType.DEFAULT, 
-
 
10187
          new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, 
-
 
10188
              new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))));
-
 
10189
      metaDataMap = Collections.unmodifiableMap(tmpMap);
-
 
10190
      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getItemsStatus_args.class, metaDataMap);
-
 
10191
    }
-
 
10192
 
-
 
10193
    public getItemsStatus_args() {
-
 
10194
    }
-
 
10195
 
-
 
10196
    public getItemsStatus_args(
-
 
10197
      List<Long> itemIds)
-
 
10198
    {
-
 
10199
      this();
-
 
10200
      this.itemIds = itemIds;
-
 
10201
    }
-
 
10202
 
-
 
10203
    /**
-
 
10204
     * Performs a deep copy on <i>other</i>.
-
 
10205
     */
-
 
10206
    public getItemsStatus_args(getItemsStatus_args other) {
-
 
10207
      if (other.isSetItemIds()) {
-
 
10208
        List<Long> __this__itemIds = new ArrayList<Long>();
-
 
10209
        for (Long other_element : other.itemIds) {
-
 
10210
          __this__itemIds.add(other_element);
-
 
10211
        }
-
 
10212
        this.itemIds = __this__itemIds;
-
 
10213
      }
-
 
10214
    }
-
 
10215
 
-
 
10216
    public getItemsStatus_args deepCopy() {
-
 
10217
      return new getItemsStatus_args(this);
-
 
10218
    }
-
 
10219
 
-
 
10220
    @Override
-
 
10221
    public void clear() {
-
 
10222
      this.itemIds = null;
-
 
10223
    }
-
 
10224
 
-
 
10225
    public int getItemIdsSize() {
-
 
10226
      return (this.itemIds == null) ? 0 : this.itemIds.size();
-
 
10227
    }
-
 
10228
 
-
 
10229
    public java.util.Iterator<Long> getItemIdsIterator() {
-
 
10230
      return (this.itemIds == null) ? null : this.itemIds.iterator();
-
 
10231
    }
-
 
10232
 
-
 
10233
    public void addToItemIds(long elem) {
-
 
10234
      if (this.itemIds == null) {
-
 
10235
        this.itemIds = new ArrayList<Long>();
-
 
10236
      }
-
 
10237
      this.itemIds.add(elem);
-
 
10238
    }
-
 
10239
 
-
 
10240
    public List<Long> getItemIds() {
-
 
10241
      return this.itemIds;
-
 
10242
    }
-
 
10243
 
-
 
10244
    public void setItemIds(List<Long> itemIds) {
-
 
10245
      this.itemIds = itemIds;
-
 
10246
    }
-
 
10247
 
-
 
10248
    public void unsetItemIds() {
-
 
10249
      this.itemIds = null;
-
 
10250
    }
-
 
10251
 
-
 
10252
    /** Returns true if field itemIds is set (has been assigned a value) and false otherwise */
-
 
10253
    public boolean isSetItemIds() {
-
 
10254
      return this.itemIds != null;
-
 
10255
    }
-
 
10256
 
-
 
10257
    public void setItemIdsIsSet(boolean value) {
-
 
10258
      if (!value) {
-
 
10259
        this.itemIds = null;
-
 
10260
      }
-
 
10261
    }
-
 
10262
 
-
 
10263
    public void setFieldValue(_Fields field, Object value) {
-
 
10264
      switch (field) {
-
 
10265
      case ITEM_IDS:
-
 
10266
        if (value == null) {
-
 
10267
          unsetItemIds();
-
 
10268
        } else {
-
 
10269
          setItemIds((List<Long>)value);
-
 
10270
        }
-
 
10271
        break;
-
 
10272
 
-
 
10273
      }
-
 
10274
    }
-
 
10275
 
-
 
10276
    public Object getFieldValue(_Fields field) {
-
 
10277
      switch (field) {
-
 
10278
      case ITEM_IDS:
-
 
10279
        return getItemIds();
-
 
10280
 
-
 
10281
      }
-
 
10282
      throw new IllegalStateException();
-
 
10283
    }
-
 
10284
 
-
 
10285
    /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
-
 
10286
    public boolean isSet(_Fields field) {
-
 
10287
      if (field == null) {
-
 
10288
        throw new IllegalArgumentException();
-
 
10289
      }
-
 
10290
 
-
 
10291
      switch (field) {
-
 
10292
      case ITEM_IDS:
-
 
10293
        return isSetItemIds();
-
 
10294
      }
-
 
10295
      throw new IllegalStateException();
-
 
10296
    }
-
 
10297
 
-
 
10298
    @Override
-
 
10299
    public boolean equals(Object that) {
-
 
10300
      if (that == null)
-
 
10301
        return false;
-
 
10302
      if (that instanceof getItemsStatus_args)
-
 
10303
        return this.equals((getItemsStatus_args)that);
-
 
10304
      return false;
-
 
10305
    }
-
 
10306
 
-
 
10307
    public boolean equals(getItemsStatus_args that) {
-
 
10308
      if (that == null)
-
 
10309
        return false;
-
 
10310
 
-
 
10311
      boolean this_present_itemIds = true && this.isSetItemIds();
-
 
10312
      boolean that_present_itemIds = true && that.isSetItemIds();
-
 
10313
      if (this_present_itemIds || that_present_itemIds) {
-
 
10314
        if (!(this_present_itemIds && that_present_itemIds))
-
 
10315
          return false;
-
 
10316
        if (!this.itemIds.equals(that.itemIds))
-
 
10317
          return false;
-
 
10318
      }
-
 
10319
 
-
 
10320
      return true;
-
 
10321
    }
-
 
10322
 
-
 
10323
    @Override
-
 
10324
    public int hashCode() {
-
 
10325
      return 0;
-
 
10326
    }
-
 
10327
 
-
 
10328
    public int compareTo(getItemsStatus_args other) {
-
 
10329
      if (!getClass().equals(other.getClass())) {
-
 
10330
        return getClass().getName().compareTo(other.getClass().getName());
-
 
10331
      }
-
 
10332
 
-
 
10333
      int lastComparison = 0;
-
 
10334
      getItemsStatus_args typedOther = (getItemsStatus_args)other;
-
 
10335
 
-
 
10336
      lastComparison = Boolean.valueOf(isSetItemIds()).compareTo(typedOther.isSetItemIds());
-
 
10337
      if (lastComparison != 0) {
-
 
10338
        return lastComparison;
-
 
10339
      }
-
 
10340
      if (isSetItemIds()) {
-
 
10341
        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.itemIds, typedOther.itemIds);
-
 
10342
        if (lastComparison != 0) {
-
 
10343
          return lastComparison;
-
 
10344
        }
-
 
10345
      }
-
 
10346
      return 0;
-
 
10347
    }
-
 
10348
 
-
 
10349
    public _Fields fieldForId(int fieldId) {
-
 
10350
      return _Fields.findByThriftId(fieldId);
-
 
10351
    }
-
 
10352
 
-
 
10353
    public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
-
 
10354
      org.apache.thrift.protocol.TField field;
-
 
10355
      iprot.readStructBegin();
-
 
10356
      while (true)
-
 
10357
      {
-
 
10358
        field = iprot.readFieldBegin();
-
 
10359
        if (field.type == org.apache.thrift.protocol.TType.STOP) { 
-
 
10360
          break;
-
 
10361
        }
-
 
10362
        switch (field.id) {
-
 
10363
          case 1: // ITEM_IDS
-
 
10364
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
-
 
10365
              {
-
 
10366
                org.apache.thrift.protocol.TList _list9 = iprot.readListBegin();
-
 
10367
                this.itemIds = new ArrayList<Long>(_list9.size);
-
 
10368
                for (int _i10 = 0; _i10 < _list9.size; ++_i10)
-
 
10369
                {
-
 
10370
                  long _elem11; // required
-
 
10371
                  _elem11 = iprot.readI64();
-
 
10372
                  this.itemIds.add(_elem11);
-
 
10373
                }
-
 
10374
                iprot.readListEnd();
-
 
10375
              }
-
 
10376
            } else { 
-
 
10377
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
-
 
10378
            }
-
 
10379
            break;
-
 
10380
          default:
-
 
10381
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
-
 
10382
        }
-
 
10383
        iprot.readFieldEnd();
-
 
10384
      }
-
 
10385
      iprot.readStructEnd();
-
 
10386
      validate();
-
 
10387
    }
-
 
10388
 
-
 
10389
    public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
-
 
10390
      validate();
-
 
10391
 
-
 
10392
      oprot.writeStructBegin(STRUCT_DESC);
-
 
10393
      if (this.itemIds != null) {
-
 
10394
        oprot.writeFieldBegin(ITEM_IDS_FIELD_DESC);
-
 
10395
        {
-
 
10396
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.itemIds.size()));
-
 
10397
          for (long _iter12 : this.itemIds)
-
 
10398
          {
-
 
10399
            oprot.writeI64(_iter12);
-
 
10400
          }
-
 
10401
          oprot.writeListEnd();
-
 
10402
        }
-
 
10403
        oprot.writeFieldEnd();
-
 
10404
      }
-
 
10405
      oprot.writeFieldStop();
-
 
10406
      oprot.writeStructEnd();
-
 
10407
    }
-
 
10408
 
-
 
10409
    @Override
-
 
10410
    public String toString() {
-
 
10411
      StringBuilder sb = new StringBuilder("getItemsStatus_args(");
-
 
10412
      boolean first = true;
-
 
10413
 
-
 
10414
      sb.append("itemIds:");
-
 
10415
      if (this.itemIds == null) {
-
 
10416
        sb.append("null");
-
 
10417
      } else {
-
 
10418
        sb.append(this.itemIds);
-
 
10419
      }
-
 
10420
      first = false;
-
 
10421
      sb.append(")");
-
 
10422
      return sb.toString();
-
 
10423
    }
-
 
10424
 
-
 
10425
    public void validate() throws org.apache.thrift.TException {
-
 
10426
      // check for required fields
-
 
10427
    }
-
 
10428
 
-
 
10429
    private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
-
 
10430
      try {
-
 
10431
        write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
-
 
10432
      } catch (org.apache.thrift.TException te) {
-
 
10433
        throw new java.io.IOException(te);
-
 
10434
      }
-
 
10435
    }
-
 
10436
 
-
 
10437
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
-
 
10438
      try {
-
 
10439
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
-
 
10440
      } catch (org.apache.thrift.TException te) {
-
 
10441
        throw new java.io.IOException(te);
-
 
10442
      }
-
 
10443
    }
-
 
10444
 
-
 
10445
  }
-
 
10446
 
-
 
10447
  public static class getItemsStatus_result implements org.apache.thrift.TBase<getItemsStatus_result, getItemsStatus_result._Fields>, java.io.Serializable, Cloneable   {
-
 
10448
    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getItemsStatus_result");
-
 
10449
 
-
 
10450
    private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0);
-
 
10451
    private static final org.apache.thrift.protocol.TField ISEX_FIELD_DESC = new org.apache.thrift.protocol.TField("isex", org.apache.thrift.protocol.TType.STRUCT, (short)1);
-
 
10452
 
-
 
10453
    private Map<Long,Boolean> success; // required
-
 
10454
    private CatalogServiceException isex; // required
-
 
10455
 
-
 
10456
    /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
-
 
10457
    public enum _Fields implements org.apache.thrift.TFieldIdEnum {
-
 
10458
      SUCCESS((short)0, "success"),
-
 
10459
      ISEX((short)1, "isex");
-
 
10460
 
-
 
10461
      private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
-
 
10462
 
-
 
10463
      static {
-
 
10464
        for (_Fields field : EnumSet.allOf(_Fields.class)) {
-
 
10465
          byName.put(field.getFieldName(), field);
-
 
10466
        }
-
 
10467
      }
-
 
10468
 
-
 
10469
      /**
-
 
10470
       * Find the _Fields constant that matches fieldId, or null if its not found.
-
 
10471
       */
-
 
10472
      public static _Fields findByThriftId(int fieldId) {
-
 
10473
        switch(fieldId) {
-
 
10474
          case 0: // SUCCESS
-
 
10475
            return SUCCESS;
-
 
10476
          case 1: // ISEX
-
 
10477
            return ISEX;
-
 
10478
          default:
-
 
10479
            return null;
-
 
10480
        }
-
 
10481
      }
-
 
10482
 
-
 
10483
      /**
-
 
10484
       * Find the _Fields constant that matches fieldId, throwing an exception
-
 
10485
       * if it is not found.
-
 
10486
       */
-
 
10487
      public static _Fields findByThriftIdOrThrow(int fieldId) {
-
 
10488
        _Fields fields = findByThriftId(fieldId);
-
 
10489
        if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
-
 
10490
        return fields;
-
 
10491
      }
-
 
10492
 
-
 
10493
      /**
-
 
10494
       * Find the _Fields constant that matches name, or null if its not found.
-
 
10495
       */
-
 
10496
      public static _Fields findByName(String name) {
-
 
10497
        return byName.get(name);
-
 
10498
      }
-
 
10499
 
-
 
10500
      private final short _thriftId;
-
 
10501
      private final String _fieldName;
-
 
10502
 
-
 
10503
      _Fields(short thriftId, String fieldName) {
-
 
10504
        _thriftId = thriftId;
-
 
10505
        _fieldName = fieldName;
-
 
10506
      }
-
 
10507
 
-
 
10508
      public short getThriftFieldId() {
-
 
10509
        return _thriftId;
-
 
10510
      }
-
 
10511
 
-
 
10512
      public String getFieldName() {
-
 
10513
        return _fieldName;
-
 
10514
      }
-
 
10515
    }
-
 
10516
 
-
 
10517
    // isset id assignments
-
 
10518
 
-
 
10519
    public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
-
 
10520
    static {
-
 
10521
      Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
-
 
10522
      tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, 
-
 
10523
          new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, 
-
 
10524
              new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), 
-
 
10525
              new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))));
-
 
10526
      tmpMap.put(_Fields.ISEX, new org.apache.thrift.meta_data.FieldMetaData("isex", org.apache.thrift.TFieldRequirementType.DEFAULT, 
-
 
10527
          new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
-
 
10528
      metaDataMap = Collections.unmodifiableMap(tmpMap);
-
 
10529
      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getItemsStatus_result.class, metaDataMap);
-
 
10530
    }
-
 
10531
 
-
 
10532
    public getItemsStatus_result() {
-
 
10533
    }
-
 
10534
 
-
 
10535
    public getItemsStatus_result(
-
 
10536
      Map<Long,Boolean> success,
-
 
10537
      CatalogServiceException isex)
-
 
10538
    {
-
 
10539
      this();
-
 
10540
      this.success = success;
-
 
10541
      this.isex = isex;
-
 
10542
    }
-
 
10543
 
-
 
10544
    /**
-
 
10545
     * Performs a deep copy on <i>other</i>.
-
 
10546
     */
-
 
10547
    public getItemsStatus_result(getItemsStatus_result other) {
-
 
10548
      if (other.isSetSuccess()) {
-
 
10549
        Map<Long,Boolean> __this__success = new HashMap<Long,Boolean>();
-
 
10550
        for (Map.Entry<Long, Boolean> other_element : other.success.entrySet()) {
-
 
10551
 
-
 
10552
          Long other_element_key = other_element.getKey();
-
 
10553
          Boolean other_element_value = other_element.getValue();
-
 
10554
 
-
 
10555
          Long __this__success_copy_key = other_element_key;
-
 
10556
 
-
 
10557
          Boolean __this__success_copy_value = other_element_value;
-
 
10558
 
-
 
10559
          __this__success.put(__this__success_copy_key, __this__success_copy_value);
-
 
10560
        }
-
 
10561
        this.success = __this__success;
-
 
10562
      }
-
 
10563
      if (other.isSetIsex()) {
-
 
10564
        this.isex = new CatalogServiceException(other.isex);
-
 
10565
      }
-
 
10566
    }
-
 
10567
 
-
 
10568
    public getItemsStatus_result deepCopy() {
-
 
10569
      return new getItemsStatus_result(this);
-
 
10570
    }
-
 
10571
 
-
 
10572
    @Override
-
 
10573
    public void clear() {
-
 
10574
      this.success = null;
-
 
10575
      this.isex = null;
-
 
10576
    }
-
 
10577
 
-
 
10578
    public int getSuccessSize() {
-
 
10579
      return (this.success == null) ? 0 : this.success.size();
-
 
10580
    }
-
 
10581
 
-
 
10582
    public void putToSuccess(long key, boolean val) {
-
 
10583
      if (this.success == null) {
-
 
10584
        this.success = new HashMap<Long,Boolean>();
-
 
10585
      }
-
 
10586
      this.success.put(key, val);
-
 
10587
    }
-
 
10588
 
-
 
10589
    public Map<Long,Boolean> getSuccess() {
-
 
10590
      return this.success;
-
 
10591
    }
-
 
10592
 
-
 
10593
    public void setSuccess(Map<Long,Boolean> success) {
-
 
10594
      this.success = success;
-
 
10595
    }
-
 
10596
 
-
 
10597
    public void unsetSuccess() {
-
 
10598
      this.success = null;
-
 
10599
    }
-
 
10600
 
-
 
10601
    /** Returns true if field success is set (has been assigned a value) and false otherwise */
-
 
10602
    public boolean isSetSuccess() {
-
 
10603
      return this.success != null;
-
 
10604
    }
-
 
10605
 
-
 
10606
    public void setSuccessIsSet(boolean value) {
-
 
10607
      if (!value) {
-
 
10608
        this.success = null;
-
 
10609
      }
-
 
10610
    }
-
 
10611
 
-
 
10612
    public CatalogServiceException getIsex() {
-
 
10613
      return this.isex;
-
 
10614
    }
-
 
10615
 
-
 
10616
    public void setIsex(CatalogServiceException isex) {
-
 
10617
      this.isex = isex;
-
 
10618
    }
-
 
10619
 
-
 
10620
    public void unsetIsex() {
-
 
10621
      this.isex = null;
-
 
10622
    }
-
 
10623
 
-
 
10624
    /** Returns true if field isex is set (has been assigned a value) and false otherwise */
-
 
10625
    public boolean isSetIsex() {
-
 
10626
      return this.isex != null;
-
 
10627
    }
-
 
10628
 
-
 
10629
    public void setIsexIsSet(boolean value) {
-
 
10630
      if (!value) {
-
 
10631
        this.isex = null;
-
 
10632
      }
-
 
10633
    }
-
 
10634
 
-
 
10635
    public void setFieldValue(_Fields field, Object value) {
-
 
10636
      switch (field) {
-
 
10637
      case SUCCESS:
-
 
10638
        if (value == null) {
-
 
10639
          unsetSuccess();
-
 
10640
        } else {
-
 
10641
          setSuccess((Map<Long,Boolean>)value);
-
 
10642
        }
-
 
10643
        break;
-
 
10644
 
-
 
10645
      case ISEX:
-
 
10646
        if (value == null) {
-
 
10647
          unsetIsex();
-
 
10648
        } else {
-
 
10649
          setIsex((CatalogServiceException)value);
-
 
10650
        }
-
 
10651
        break;
-
 
10652
 
-
 
10653
      }
-
 
10654
    }
-
 
10655
 
-
 
10656
    public Object getFieldValue(_Fields field) {
-
 
10657
      switch (field) {
-
 
10658
      case SUCCESS:
-
 
10659
        return getSuccess();
-
 
10660
 
-
 
10661
      case ISEX:
-
 
10662
        return getIsex();
-
 
10663
 
-
 
10664
      }
-
 
10665
      throw new IllegalStateException();
-
 
10666
    }
-
 
10667
 
-
 
10668
    /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
-
 
10669
    public boolean isSet(_Fields field) {
-
 
10670
      if (field == null) {
-
 
10671
        throw new IllegalArgumentException();
-
 
10672
      }
-
 
10673
 
-
 
10674
      switch (field) {
-
 
10675
      case SUCCESS:
-
 
10676
        return isSetSuccess();
-
 
10677
      case ISEX:
-
 
10678
        return isSetIsex();
-
 
10679
      }
-
 
10680
      throw new IllegalStateException();
-
 
10681
    }
-
 
10682
 
-
 
10683
    @Override
-
 
10684
    public boolean equals(Object that) {
-
 
10685
      if (that == null)
-
 
10686
        return false;
-
 
10687
      if (that instanceof getItemsStatus_result)
-
 
10688
        return this.equals((getItemsStatus_result)that);
-
 
10689
      return false;
-
 
10690
    }
-
 
10691
 
-
 
10692
    public boolean equals(getItemsStatus_result that) {
-
 
10693
      if (that == null)
-
 
10694
        return false;
-
 
10695
 
-
 
10696
      boolean this_present_success = true && this.isSetSuccess();
-
 
10697
      boolean that_present_success = true && that.isSetSuccess();
-
 
10698
      if (this_present_success || that_present_success) {
-
 
10699
        if (!(this_present_success && that_present_success))
-
 
10700
          return false;
-
 
10701
        if (!this.success.equals(that.success))
-
 
10702
          return false;
-
 
10703
      }
-
 
10704
 
-
 
10705
      boolean this_present_isex = true && this.isSetIsex();
-
 
10706
      boolean that_present_isex = true && that.isSetIsex();
-
 
10707
      if (this_present_isex || that_present_isex) {
-
 
10708
        if (!(this_present_isex && that_present_isex))
-
 
10709
          return false;
-
 
10710
        if (!this.isex.equals(that.isex))
-
 
10711
          return false;
-
 
10712
      }
-
 
10713
 
-
 
10714
      return true;
-
 
10715
    }
-
 
10716
 
-
 
10717
    @Override
-
 
10718
    public int hashCode() {
-
 
10719
      return 0;
-
 
10720
    }
-
 
10721
 
-
 
10722
    public int compareTo(getItemsStatus_result other) {
-
 
10723
      if (!getClass().equals(other.getClass())) {
-
 
10724
        return getClass().getName().compareTo(other.getClass().getName());
-
 
10725
      }
-
 
10726
 
-
 
10727
      int lastComparison = 0;
-
 
10728
      getItemsStatus_result typedOther = (getItemsStatus_result)other;
-
 
10729
 
-
 
10730
      lastComparison = Boolean.valueOf(isSetSuccess()).compareTo(typedOther.isSetSuccess());
-
 
10731
      if (lastComparison != 0) {
-
 
10732
        return lastComparison;
-
 
10733
      }
-
 
10734
      if (isSetSuccess()) {
-
 
10735
        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, typedOther.success);
-
 
10736
        if (lastComparison != 0) {
-
 
10737
          return lastComparison;
-
 
10738
        }
-
 
10739
      }
-
 
10740
      lastComparison = Boolean.valueOf(isSetIsex()).compareTo(typedOther.isSetIsex());
-
 
10741
      if (lastComparison != 0) {
-
 
10742
        return lastComparison;
-
 
10743
      }
-
 
10744
      if (isSetIsex()) {
-
 
10745
        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.isex, typedOther.isex);
-
 
10746
        if (lastComparison != 0) {
-
 
10747
          return lastComparison;
-
 
10748
        }
-
 
10749
      }
-
 
10750
      return 0;
-
 
10751
    }
-
 
10752
 
-
 
10753
    public _Fields fieldForId(int fieldId) {
-
 
10754
      return _Fields.findByThriftId(fieldId);
-
 
10755
    }
-
 
10756
 
-
 
10757
    public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
-
 
10758
      org.apache.thrift.protocol.TField field;
-
 
10759
      iprot.readStructBegin();
-
 
10760
      while (true)
-
 
10761
      {
-
 
10762
        field = iprot.readFieldBegin();
-
 
10763
        if (field.type == org.apache.thrift.protocol.TType.STOP) { 
-
 
10764
          break;
-
 
10765
        }
-
 
10766
        switch (field.id) {
-
 
10767
          case 0: // SUCCESS
-
 
10768
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
-
 
10769
              {
-
 
10770
                org.apache.thrift.protocol.TMap _map13 = iprot.readMapBegin();
-
 
10771
                this.success = new HashMap<Long,Boolean>(2*_map13.size);
-
 
10772
                for (int _i14 = 0; _i14 < _map13.size; ++_i14)
-
 
10773
                {
-
 
10774
                  long _key15; // required
-
 
10775
                  boolean _val16; // required
-
 
10776
                  _key15 = iprot.readI64();
-
 
10777
                  _val16 = iprot.readBool();
-
 
10778
                  this.success.put(_key15, _val16);
-
 
10779
                }
-
 
10780
                iprot.readMapEnd();
-
 
10781
              }
-
 
10782
            } else { 
-
 
10783
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
-
 
10784
            }
-
 
10785
            break;
-
 
10786
          case 1: // ISEX
-
 
10787
            if (field.type == org.apache.thrift.protocol.TType.STRUCT) {
-
 
10788
              this.isex = new CatalogServiceException();
-
 
10789
              this.isex.read(iprot);
-
 
10790
            } else { 
-
 
10791
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
-
 
10792
            }
-
 
10793
            break;
-
 
10794
          default:
-
 
10795
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
-
 
10796
        }
-
 
10797
        iprot.readFieldEnd();
-
 
10798
      }
-
 
10799
      iprot.readStructEnd();
-
 
10800
      validate();
-
 
10801
    }
-
 
10802
 
-
 
10803
    public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
-
 
10804
      oprot.writeStructBegin(STRUCT_DESC);
-
 
10805
 
-
 
10806
      if (this.isSetSuccess()) {
-
 
10807
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
-
 
10808
        {
-
 
10809
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL, this.success.size()));
-
 
10810
          for (Map.Entry<Long, Boolean> _iter17 : this.success.entrySet())
-
 
10811
          {
-
 
10812
            oprot.writeI64(_iter17.getKey());
-
 
10813
            oprot.writeBool(_iter17.getValue());
-
 
10814
          }
-
 
10815
          oprot.writeMapEnd();
-
 
10816
        }
-
 
10817
        oprot.writeFieldEnd();
-
 
10818
      } else if (this.isSetIsex()) {
-
 
10819
        oprot.writeFieldBegin(ISEX_FIELD_DESC);
-
 
10820
        this.isex.write(oprot);
-
 
10821
        oprot.writeFieldEnd();
-
 
10822
      }
-
 
10823
      oprot.writeFieldStop();
-
 
10824
      oprot.writeStructEnd();
-
 
10825
    }
-
 
10826
 
-
 
10827
    @Override
-
 
10828
    public String toString() {
-
 
10829
      StringBuilder sb = new StringBuilder("getItemsStatus_result(");
-
 
10830
      boolean first = true;
-
 
10831
 
-
 
10832
      sb.append("success:");
-
 
10833
      if (this.success == null) {
-
 
10834
        sb.append("null");
-
 
10835
      } else {
-
 
10836
        sb.append(this.success);
-
 
10837
      }
-
 
10838
      first = false;
-
 
10839
      if (!first) sb.append(", ");
-
 
10840
      sb.append("isex:");
-
 
10841
      if (this.isex == null) {
-
 
10842
        sb.append("null");
-
 
10843
      } else {
-
 
10844
        sb.append(this.isex);
-
 
10845
      }
-
 
10846
      first = false;
-
 
10847
      sb.append(")");
-
 
10848
      return sb.toString();
-
 
10849
    }
-
 
10850
 
-
 
10851
    public void validate() throws org.apache.thrift.TException {
-
 
10852
      // check for required fields
-
 
10853
    }
-
 
10854
 
-
 
10855
    private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
-
 
10856
      try {
-
 
10857
        write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
-
 
10858
      } catch (org.apache.thrift.TException te) {
-
 
10859
        throw new java.io.IOException(te);
-
 
10860
      }
-
 
10861
    }
-
 
10862
 
-
 
10863
    private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
-
 
10864
      try {
-
 
10865
        read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
-
 
10866
      } catch (org.apache.thrift.TException te) {
-
 
10867
        throw new java.io.IOException(te);
-
 
10868
      }
-
 
10869
    }
-
 
10870
 
-
 
10871
  }
-
 
10872
 
10033
  public static class getItemStatusDescription_args implements org.apache.thrift.TBase<getItemStatusDescription_args, getItemStatusDescription_args._Fields>, java.io.Serializable, Cloneable   {
10873
  public static class getItemStatusDescription_args implements org.apache.thrift.TBase<getItemStatusDescription_args, getItemStatusDescription_args._Fields>, java.io.Serializable, Cloneable   {
10034
    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getItemStatusDescription_args");
10874
    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getItemStatusDescription_args");
10035
 
10875
 
10036
    private static final org.apache.thrift.protocol.TField ITEM_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("itemId", org.apache.thrift.protocol.TType.I64, (short)1);
10876
    private static final org.apache.thrift.protocol.TField ITEM_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("itemId", org.apache.thrift.protocol.TType.I64, (short)1);
10037
 
10877
 
Line 14104... Line 14944...
14104
        }
14944
        }
14105
        switch (field.id) {
14945
        switch (field.id) {
14106
          case 0: // SUCCESS
14946
          case 0: // SUCCESS
14107
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
14947
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
14108
              {
14948
              {
14109
                org.apache.thrift.protocol.TList _list9 = iprot.readListBegin();
14949
                org.apache.thrift.protocol.TList _list18 = iprot.readListBegin();
14110
                this.success = new ArrayList<Item>(_list9.size);
14950
                this.success = new ArrayList<Item>(_list18.size);
14111
                for (int _i10 = 0; _i10 < _list9.size; ++_i10)
14951
                for (int _i19 = 0; _i19 < _list18.size; ++_i19)
14112
                {
14952
                {
14113
                  Item _elem11; // required
14953
                  Item _elem20; // required
14114
                  _elem11 = new Item();
14954
                  _elem20 = new Item();
14115
                  _elem11.read(iprot);
14955
                  _elem20.read(iprot);
14116
                  this.success.add(_elem11);
14956
                  this.success.add(_elem20);
14117
                }
14957
                }
14118
                iprot.readListEnd();
14958
                iprot.readListEnd();
14119
              }
14959
              }
14120
            } else { 
14960
            } else { 
14121
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
14961
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 14143... Line 14983...
14143
 
14983
 
14144
      if (this.isSetSuccess()) {
14984
      if (this.isSetSuccess()) {
14145
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
14985
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
14146
        {
14986
        {
14147
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
14987
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
14148
          for (Item _iter12 : this.success)
14988
          for (Item _iter21 : this.success)
14149
          {
14989
          {
14150
            _iter12.write(oprot);
14990
            _iter21.write(oprot);
14151
          }
14991
          }
14152
          oprot.writeListEnd();
14992
          oprot.writeListEnd();
14153
        }
14993
        }
14154
        oprot.writeFieldEnd();
14994
        oprot.writeFieldEnd();
14155
      } else if (this.isSetCex()) {
14995
      } else if (this.isSetCex()) {
Line 14817... Line 15657...
14817
        }
15657
        }
14818
        switch (field.id) {
15658
        switch (field.id) {
14819
          case 0: // SUCCESS
15659
          case 0: // SUCCESS
14820
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
15660
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
14821
              {
15661
              {
14822
                org.apache.thrift.protocol.TList _list13 = iprot.readListBegin();
15662
                org.apache.thrift.protocol.TList _list22 = iprot.readListBegin();
14823
                this.success = new ArrayList<Item>(_list13.size);
15663
                this.success = new ArrayList<Item>(_list22.size);
14824
                for (int _i14 = 0; _i14 < _list13.size; ++_i14)
15664
                for (int _i23 = 0; _i23 < _list22.size; ++_i23)
14825
                {
15665
                {
14826
                  Item _elem15; // required
15666
                  Item _elem24; // required
14827
                  _elem15 = new Item();
15667
                  _elem24 = new Item();
14828
                  _elem15.read(iprot);
15668
                  _elem24.read(iprot);
14829
                  this.success.add(_elem15);
15669
                  this.success.add(_elem24);
14830
                }
15670
                }
14831
                iprot.readListEnd();
15671
                iprot.readListEnd();
14832
              }
15672
              }
14833
            } else { 
15673
            } else { 
14834
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
15674
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 14856... Line 15696...
14856
 
15696
 
14857
      if (this.isSetSuccess()) {
15697
      if (this.isSetSuccess()) {
14858
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
15698
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
14859
        {
15699
        {
14860
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
15700
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
14861
          for (Item _iter16 : this.success)
15701
          for (Item _iter25 : this.success)
14862
          {
15702
          {
14863
            _iter16.write(oprot);
15703
            _iter25.write(oprot);
14864
          }
15704
          }
14865
          oprot.writeListEnd();
15705
          oprot.writeListEnd();
14866
        }
15706
        }
14867
        oprot.writeFieldEnd();
15707
        oprot.writeFieldEnd();
14868
      } else if (this.isSetCex()) {
15708
      } else if (this.isSetCex()) {
Line 15530... Line 16370...
15530
        }
16370
        }
15531
        switch (field.id) {
16371
        switch (field.id) {
15532
          case 0: // SUCCESS
16372
          case 0: // SUCCESS
15533
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
16373
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
15534
              {
16374
              {
15535
                org.apache.thrift.protocol.TList _list17 = iprot.readListBegin();
16375
                org.apache.thrift.protocol.TList _list26 = iprot.readListBegin();
15536
                this.success = new ArrayList<Item>(_list17.size);
16376
                this.success = new ArrayList<Item>(_list26.size);
15537
                for (int _i18 = 0; _i18 < _list17.size; ++_i18)
16377
                for (int _i27 = 0; _i27 < _list26.size; ++_i27)
15538
                {
16378
                {
15539
                  Item _elem19; // required
16379
                  Item _elem28; // required
15540
                  _elem19 = new Item();
16380
                  _elem28 = new Item();
15541
                  _elem19.read(iprot);
16381
                  _elem28.read(iprot);
15542
                  this.success.add(_elem19);
16382
                  this.success.add(_elem28);
15543
                }
16383
                }
15544
                iprot.readListEnd();
16384
                iprot.readListEnd();
15545
              }
16385
              }
15546
            } else { 
16386
            } else { 
15547
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
16387
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 15569... Line 16409...
15569
 
16409
 
15570
      if (this.isSetSuccess()) {
16410
      if (this.isSetSuccess()) {
15571
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
16411
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
15572
        {
16412
        {
15573
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
16413
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
15574
          for (Item _iter20 : this.success)
16414
          for (Item _iter29 : this.success)
15575
          {
16415
          {
15576
            _iter20.write(oprot);
16416
            _iter29.write(oprot);
15577
          }
16417
          }
15578
          oprot.writeListEnd();
16418
          oprot.writeListEnd();
15579
        }
16419
        }
15580
        oprot.writeFieldEnd();
16420
        oprot.writeFieldEnd();
15581
      } else if (this.isSetCex()) {
16421
      } else if (this.isSetCex()) {
Line 16255... Line 17095...
16255
        }
17095
        }
16256
        switch (field.id) {
17096
        switch (field.id) {
16257
          case 0: // SUCCESS
17097
          case 0: // SUCCESS
16258
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
17098
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
16259
              {
17099
              {
16260
                org.apache.thrift.protocol.TList _list21 = iprot.readListBegin();
17100
                org.apache.thrift.protocol.TList _list30 = iprot.readListBegin();
16261
                this.success = new ArrayList<Item>(_list21.size);
17101
                this.success = new ArrayList<Item>(_list30.size);
16262
                for (int _i22 = 0; _i22 < _list21.size; ++_i22)
17102
                for (int _i31 = 0; _i31 < _list30.size; ++_i31)
16263
                {
17103
                {
16264
                  Item _elem23; // required
17104
                  Item _elem32; // required
16265
                  _elem23 = new Item();
17105
                  _elem32 = new Item();
16266
                  _elem23.read(iprot);
17106
                  _elem32.read(iprot);
16267
                  this.success.add(_elem23);
17107
                  this.success.add(_elem32);
16268
                }
17108
                }
16269
                iprot.readListEnd();
17109
                iprot.readListEnd();
16270
              }
17110
              }
16271
            } else { 
17111
            } else { 
16272
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
17112
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 16294... Line 17134...
16294
 
17134
 
16295
      if (this.isSetSuccess()) {
17135
      if (this.isSetSuccess()) {
16296
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
17136
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
16297
        {
17137
        {
16298
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
17138
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
16299
          for (Item _iter24 : this.success)
17139
          for (Item _iter33 : this.success)
16300
          {
17140
          {
16301
            _iter24.write(oprot);
17141
            _iter33.write(oprot);
16302
          }
17142
          }
16303
          oprot.writeListEnd();
17143
          oprot.writeListEnd();
16304
        }
17144
        }
16305
        oprot.writeFieldEnd();
17145
        oprot.writeFieldEnd();
16306
      } else if (this.isSetCex()) {
17146
      } else if (this.isSetCex()) {
Line 18071... Line 18911...
18071
        }
18911
        }
18072
        switch (field.id) {
18912
        switch (field.id) {
18073
          case 0: // SUCCESS
18913
          case 0: // SUCCESS
18074
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
18914
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
18075
              {
18915
              {
18076
                org.apache.thrift.protocol.TList _list25 = iprot.readListBegin();
18916
                org.apache.thrift.protocol.TList _list34 = iprot.readListBegin();
18077
                this.success = new ArrayList<Item>(_list25.size);
18917
                this.success = new ArrayList<Item>(_list34.size);
18078
                for (int _i26 = 0; _i26 < _list25.size; ++_i26)
18918
                for (int _i35 = 0; _i35 < _list34.size; ++_i35)
18079
                {
18919
                {
18080
                  Item _elem27; // required
18920
                  Item _elem36; // required
18081
                  _elem27 = new Item();
18921
                  _elem36 = new Item();
18082
                  _elem27.read(iprot);
18922
                  _elem36.read(iprot);
18083
                  this.success.add(_elem27);
18923
                  this.success.add(_elem36);
18084
                }
18924
                }
18085
                iprot.readListEnd();
18925
                iprot.readListEnd();
18086
              }
18926
              }
18087
            } else { 
18927
            } else { 
18088
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
18928
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 18110... Line 18950...
18110
 
18950
 
18111
      if (this.isSetSuccess()) {
18951
      if (this.isSetSuccess()) {
18112
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
18952
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
18113
        {
18953
        {
18114
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
18954
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
18115
          for (Item _iter28 : this.success)
18955
          for (Item _iter37 : this.success)
18116
          {
18956
          {
18117
            _iter28.write(oprot);
18957
            _iter37.write(oprot);
18118
          }
18958
          }
18119
          oprot.writeListEnd();
18959
          oprot.writeListEnd();
18120
        }
18960
        }
18121
        oprot.writeFieldEnd();
18961
        oprot.writeFieldEnd();
18122
      } else if (this.isSetCex()) {
18962
      } else if (this.isSetCex()) {
Line 18965... Line 19805...
18965
        }
19805
        }
18966
        switch (field.id) {
19806
        switch (field.id) {
18967
          case 0: // SUCCESS
19807
          case 0: // SUCCESS
18968
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
19808
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
18969
              {
19809
              {
18970
                org.apache.thrift.protocol.TList _list29 = iprot.readListBegin();
19810
                org.apache.thrift.protocol.TList _list38 = iprot.readListBegin();
18971
                this.success = new ArrayList<Item>(_list29.size);
19811
                this.success = new ArrayList<Item>(_list38.size);
18972
                for (int _i30 = 0; _i30 < _list29.size; ++_i30)
19812
                for (int _i39 = 0; _i39 < _list38.size; ++_i39)
18973
                {
19813
                {
18974
                  Item _elem31; // required
19814
                  Item _elem40; // required
18975
                  _elem31 = new Item();
19815
                  _elem40 = new Item();
18976
                  _elem31.read(iprot);
19816
                  _elem40.read(iprot);
18977
                  this.success.add(_elem31);
19817
                  this.success.add(_elem40);
18978
                }
19818
                }
18979
                iprot.readListEnd();
19819
                iprot.readListEnd();
18980
              }
19820
              }
18981
            } else { 
19821
            } else { 
18982
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
19822
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 19004... Line 19844...
19004
 
19844
 
19005
      if (this.isSetSuccess()) {
19845
      if (this.isSetSuccess()) {
19006
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
19846
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
19007
        {
19847
        {
19008
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
19848
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
19009
          for (Item _iter32 : this.success)
19849
          for (Item _iter41 : this.success)
19010
          {
19850
          {
19011
            _iter32.write(oprot);
19851
            _iter41.write(oprot);
19012
          }
19852
          }
19013
          oprot.writeListEnd();
19853
          oprot.writeListEnd();
19014
        }
19854
        }
19015
        oprot.writeFieldEnd();
19855
        oprot.writeFieldEnd();
19016
      } else if (this.isSetCex()) {
19856
      } else if (this.isSetCex()) {
Line 20271... Line 21111...
20271
        }
21111
        }
20272
        switch (field.id) {
21112
        switch (field.id) {
20273
          case 0: // SUCCESS
21113
          case 0: // SUCCESS
20274
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
21114
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
20275
              {
21115
              {
20276
                org.apache.thrift.protocol.TList _list33 = iprot.readListBegin();
21116
                org.apache.thrift.protocol.TList _list42 = iprot.readListBegin();
20277
                this.success = new ArrayList<Item>(_list33.size);
21117
                this.success = new ArrayList<Item>(_list42.size);
20278
                for (int _i34 = 0; _i34 < _list33.size; ++_i34)
21118
                for (int _i43 = 0; _i43 < _list42.size; ++_i43)
20279
                {
21119
                {
20280
                  Item _elem35; // required
21120
                  Item _elem44; // required
20281
                  _elem35 = new Item();
21121
                  _elem44 = new Item();
20282
                  _elem35.read(iprot);
21122
                  _elem44.read(iprot);
20283
                  this.success.add(_elem35);
21123
                  this.success.add(_elem44);
20284
                }
21124
                }
20285
                iprot.readListEnd();
21125
                iprot.readListEnd();
20286
              }
21126
              }
20287
            } else { 
21127
            } else { 
20288
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
21128
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 20310... Line 21150...
20310
 
21150
 
20311
      if (this.isSetSuccess()) {
21151
      if (this.isSetSuccess()) {
20312
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
21152
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
20313
        {
21153
        {
20314
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
21154
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
20315
          for (Item _iter36 : this.success)
21155
          for (Item _iter45 : this.success)
20316
          {
21156
          {
20317
            _iter36.write(oprot);
21157
            _iter45.write(oprot);
20318
          }
21158
          }
20319
          oprot.writeListEnd();
21159
          oprot.writeListEnd();
20320
        }
21160
        }
20321
        oprot.writeFieldEnd();
21161
        oprot.writeFieldEnd();
20322
      } else if (this.isSetIsex()) {
21162
      } else if (this.isSetIsex()) {
Line 21238... Line 22078...
21238
        }
22078
        }
21239
        switch (field.id) {
22079
        switch (field.id) {
21240
          case 0: // SUCCESS
22080
          case 0: // SUCCESS
21241
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
22081
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
21242
              {
22082
              {
21243
                org.apache.thrift.protocol.TList _list37 = iprot.readListBegin();
22083
                org.apache.thrift.protocol.TList _list46 = iprot.readListBegin();
21244
                this.success = new ArrayList<Long>(_list37.size);
22084
                this.success = new ArrayList<Long>(_list46.size);
21245
                for (int _i38 = 0; _i38 < _list37.size; ++_i38)
22085
                for (int _i47 = 0; _i47 < _list46.size; ++_i47)
21246
                {
22086
                {
21247
                  long _elem39; // required
22087
                  long _elem48; // required
21248
                  _elem39 = iprot.readI64();
22088
                  _elem48 = iprot.readI64();
21249
                  this.success.add(_elem39);
22089
                  this.success.add(_elem48);
21250
                }
22090
                }
21251
                iprot.readListEnd();
22091
                iprot.readListEnd();
21252
              }
22092
              }
21253
            } else { 
22093
            } else { 
21254
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
22094
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 21276... Line 22116...
21276
 
22116
 
21277
      if (this.isSetSuccess()) {
22117
      if (this.isSetSuccess()) {
21278
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
22118
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
21279
        {
22119
        {
21280
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
22120
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
21281
          for (long _iter40 : this.success)
22121
          for (long _iter49 : this.success)
21282
          {
22122
          {
21283
            oprot.writeI64(_iter40);
22123
            oprot.writeI64(_iter49);
21284
          }
22124
          }
21285
          oprot.writeListEnd();
22125
          oprot.writeListEnd();
21286
        }
22126
        }
21287
        oprot.writeFieldEnd();
22127
        oprot.writeFieldEnd();
21288
      } else if (this.isSetCex()) {
22128
      } else if (this.isSetCex()) {
Line 22437... Line 23277...
22437
        }
23277
        }
22438
        switch (field.id) {
23278
        switch (field.id) {
22439
          case 0: // SUCCESS
23279
          case 0: // SUCCESS
22440
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
23280
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
22441
              {
23281
              {
22442
                org.apache.thrift.protocol.TList _list41 = iprot.readListBegin();
23282
                org.apache.thrift.protocol.TList _list50 = iprot.readListBegin();
22443
                this.success = new ArrayList<Item>(_list41.size);
23283
                this.success = new ArrayList<Item>(_list50.size);
22444
                for (int _i42 = 0; _i42 < _list41.size; ++_i42)
23284
                for (int _i51 = 0; _i51 < _list50.size; ++_i51)
22445
                {
23285
                {
22446
                  Item _elem43; // required
23286
                  Item _elem52; // required
22447
                  _elem43 = new Item();
23287
                  _elem52 = new Item();
22448
                  _elem43.read(iprot);
23288
                  _elem52.read(iprot);
22449
                  this.success.add(_elem43);
23289
                  this.success.add(_elem52);
22450
                }
23290
                }
22451
                iprot.readListEnd();
23291
                iprot.readListEnd();
22452
              }
23292
              }
22453
            } else { 
23293
            } else { 
22454
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
23294
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 22476... Line 23316...
22476
 
23316
 
22477
      if (this.isSetSuccess()) {
23317
      if (this.isSetSuccess()) {
22478
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
23318
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
22479
        {
23319
        {
22480
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
23320
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
22481
          for (Item _iter44 : this.success)
23321
          for (Item _iter53 : this.success)
22482
          {
23322
          {
22483
            _iter44.write(oprot);
23323
            _iter53.write(oprot);
22484
          }
23324
          }
22485
          oprot.writeListEnd();
23325
          oprot.writeListEnd();
22486
        }
23326
        }
22487
        oprot.writeFieldEnd();
23327
        oprot.writeFieldEnd();
22488
      } else if (this.isSetIsex()) {
23328
      } else if (this.isSetIsex()) {
Line 23404... Line 24244...
23404
        }
24244
        }
23405
        switch (field.id) {
24245
        switch (field.id) {
23406
          case 0: // SUCCESS
24246
          case 0: // SUCCESS
23407
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
24247
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
23408
              {
24248
              {
23409
                org.apache.thrift.protocol.TList _list45 = iprot.readListBegin();
24249
                org.apache.thrift.protocol.TList _list54 = iprot.readListBegin();
23410
                this.success = new ArrayList<Long>(_list45.size);
24250
                this.success = new ArrayList<Long>(_list54.size);
23411
                for (int _i46 = 0; _i46 < _list45.size; ++_i46)
24251
                for (int _i55 = 0; _i55 < _list54.size; ++_i55)
23412
                {
24252
                {
23413
                  long _elem47; // required
24253
                  long _elem56; // required
23414
                  _elem47 = iprot.readI64();
24254
                  _elem56 = iprot.readI64();
23415
                  this.success.add(_elem47);
24255
                  this.success.add(_elem56);
23416
                }
24256
                }
23417
                iprot.readListEnd();
24257
                iprot.readListEnd();
23418
              }
24258
              }
23419
            } else { 
24259
            } else { 
23420
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
24260
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 23442... Line 24282...
23442
 
24282
 
23443
      if (this.isSetSuccess()) {
24283
      if (this.isSetSuccess()) {
23444
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
24284
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
23445
        {
24285
        {
23446
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
24286
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
23447
          for (long _iter48 : this.success)
24287
          for (long _iter57 : this.success)
23448
          {
24288
          {
23449
            oprot.writeI64(_iter48);
24289
            oprot.writeI64(_iter57);
23450
          }
24290
          }
23451
          oprot.writeListEnd();
24291
          oprot.writeListEnd();
23452
        }
24292
        }
23453
        oprot.writeFieldEnd();
24293
        oprot.writeFieldEnd();
23454
      } else if (this.isSetCex()) {
24294
      } else if (this.isSetCex()) {
Line 24603... Line 25443...
24603
        }
25443
        }
24604
        switch (field.id) {
25444
        switch (field.id) {
24605
          case 0: // SUCCESS
25445
          case 0: // SUCCESS
24606
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
25446
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
24607
              {
25447
              {
24608
                org.apache.thrift.protocol.TList _list49 = iprot.readListBegin();
25448
                org.apache.thrift.protocol.TList _list58 = iprot.readListBegin();
24609
                this.success = new ArrayList<Item>(_list49.size);
25449
                this.success = new ArrayList<Item>(_list58.size);
24610
                for (int _i50 = 0; _i50 < _list49.size; ++_i50)
25450
                for (int _i59 = 0; _i59 < _list58.size; ++_i59)
24611
                {
25451
                {
24612
                  Item _elem51; // required
25452
                  Item _elem60; // required
24613
                  _elem51 = new Item();
25453
                  _elem60 = new Item();
24614
                  _elem51.read(iprot);
25454
                  _elem60.read(iprot);
24615
                  this.success.add(_elem51);
25455
                  this.success.add(_elem60);
24616
                }
25456
                }
24617
                iprot.readListEnd();
25457
                iprot.readListEnd();
24618
              }
25458
              }
24619
            } else { 
25459
            } else { 
24620
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
25460
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 24642... Line 25482...
24642
 
25482
 
24643
      if (this.isSetSuccess()) {
25483
      if (this.isSetSuccess()) {
24644
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
25484
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
24645
        {
25485
        {
24646
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
25486
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
24647
          for (Item _iter52 : this.success)
25487
          for (Item _iter61 : this.success)
24648
          {
25488
          {
24649
            _iter52.write(oprot);
25489
            _iter61.write(oprot);
24650
          }
25490
          }
24651
          oprot.writeListEnd();
25491
          oprot.writeListEnd();
24652
        }
25492
        }
24653
        oprot.writeFieldEnd();
25493
        oprot.writeFieldEnd();
24654
      } else if (this.isSetIsex()) {
25494
      } else if (this.isSetIsex()) {
Line 25570... Line 26410...
25570
        }
26410
        }
25571
        switch (field.id) {
26411
        switch (field.id) {
25572
          case 0: // SUCCESS
26412
          case 0: // SUCCESS
25573
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
26413
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
25574
              {
26414
              {
25575
                org.apache.thrift.protocol.TList _list53 = iprot.readListBegin();
26415
                org.apache.thrift.protocol.TList _list62 = iprot.readListBegin();
25576
                this.success = new ArrayList<Long>(_list53.size);
26416
                this.success = new ArrayList<Long>(_list62.size);
25577
                for (int _i54 = 0; _i54 < _list53.size; ++_i54)
26417
                for (int _i63 = 0; _i63 < _list62.size; ++_i63)
25578
                {
26418
                {
25579
                  long _elem55; // required
26419
                  long _elem64; // required
25580
                  _elem55 = iprot.readI64();
26420
                  _elem64 = iprot.readI64();
25581
                  this.success.add(_elem55);
26421
                  this.success.add(_elem64);
25582
                }
26422
                }
25583
                iprot.readListEnd();
26423
                iprot.readListEnd();
25584
              }
26424
              }
25585
            } else { 
26425
            } else { 
25586
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
26426
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 25608... Line 26448...
25608
 
26448
 
25609
      if (this.isSetSuccess()) {
26449
      if (this.isSetSuccess()) {
25610
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
26450
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
25611
        {
26451
        {
25612
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
26452
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
25613
          for (long _iter56 : this.success)
26453
          for (long _iter65 : this.success)
25614
          {
26454
          {
25615
            oprot.writeI64(_iter56);
26455
            oprot.writeI64(_iter65);
25616
          }
26456
          }
25617
          oprot.writeListEnd();
26457
          oprot.writeListEnd();
25618
        }
26458
        }
25619
        oprot.writeFieldEnd();
26459
        oprot.writeFieldEnd();
25620
      } else if (this.isSetCex()) {
26460
      } else if (this.isSetCex()) {
Line 26769... Line 27609...
26769
        }
27609
        }
26770
        switch (field.id) {
27610
        switch (field.id) {
26771
          case 0: // SUCCESS
27611
          case 0: // SUCCESS
26772
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
27612
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
26773
              {
27613
              {
26774
                org.apache.thrift.protocol.TList _list57 = iprot.readListBegin();
27614
                org.apache.thrift.protocol.TList _list66 = iprot.readListBegin();
26775
                this.success = new ArrayList<Item>(_list57.size);
27615
                this.success = new ArrayList<Item>(_list66.size);
26776
                for (int _i58 = 0; _i58 < _list57.size; ++_i58)
27616
                for (int _i67 = 0; _i67 < _list66.size; ++_i67)
26777
                {
27617
                {
26778
                  Item _elem59; // required
27618
                  Item _elem68; // required
26779
                  _elem59 = new Item();
27619
                  _elem68 = new Item();
26780
                  _elem59.read(iprot);
27620
                  _elem68.read(iprot);
26781
                  this.success.add(_elem59);
27621
                  this.success.add(_elem68);
26782
                }
27622
                }
26783
                iprot.readListEnd();
27623
                iprot.readListEnd();
26784
              }
27624
              }
26785
            } else { 
27625
            } else { 
26786
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
27626
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 26808... Line 27648...
26808
 
27648
 
26809
      if (this.isSetSuccess()) {
27649
      if (this.isSetSuccess()) {
26810
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
27650
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
26811
        {
27651
        {
26812
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
27652
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
26813
          for (Item _iter60 : this.success)
27653
          for (Item _iter69 : this.success)
26814
          {
27654
          {
26815
            _iter60.write(oprot);
27655
            _iter69.write(oprot);
26816
          }
27656
          }
26817
          oprot.writeListEnd();
27657
          oprot.writeListEnd();
26818
        }
27658
        }
26819
        oprot.writeFieldEnd();
27659
        oprot.writeFieldEnd();
26820
      } else if (this.isSetIsex()) {
27660
      } else if (this.isSetIsex()) {
Line 27350... Line 28190...
27350
            }
28190
            }
27351
            break;
28191
            break;
27352
          case 4: // CATEGORIES
28192
          case 4: // CATEGORIES
27353
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
28193
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
27354
              {
28194
              {
27355
                org.apache.thrift.protocol.TList _list61 = iprot.readListBegin();
28195
                org.apache.thrift.protocol.TList _list70 = iprot.readListBegin();
27356
                this.categories = new ArrayList<Long>(_list61.size);
28196
                this.categories = new ArrayList<Long>(_list70.size);
27357
                for (int _i62 = 0; _i62 < _list61.size; ++_i62)
28197
                for (int _i71 = 0; _i71 < _list70.size; ++_i71)
27358
                {
28198
                {
27359
                  long _elem63; // required
28199
                  long _elem72; // required
27360
                  _elem63 = iprot.readI64();
28200
                  _elem72 = iprot.readI64();
27361
                  this.categories.add(_elem63);
28201
                  this.categories.add(_elem72);
27362
                }
28202
                }
27363
                iprot.readListEnd();
28203
                iprot.readListEnd();
27364
              }
28204
              }
27365
            } else { 
28205
            } else { 
27366
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
28206
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 27392... Line 28232...
27392
      }
28232
      }
27393
      if (this.categories != null) {
28233
      if (this.categories != null) {
27394
        oprot.writeFieldBegin(CATEGORIES_FIELD_DESC);
28234
        oprot.writeFieldBegin(CATEGORIES_FIELD_DESC);
27395
        {
28235
        {
27396
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.categories.size()));
28236
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.categories.size()));
27397
          for (long _iter64 : this.categories)
28237
          for (long _iter73 : this.categories)
27398
          {
28238
          {
27399
            oprot.writeI64(_iter64);
28239
            oprot.writeI64(_iter73);
27400
          }
28240
          }
27401
          oprot.writeListEnd();
28241
          oprot.writeListEnd();
27402
        }
28242
        }
27403
        oprot.writeFieldEnd();
28243
        oprot.writeFieldEnd();
27404
      }
28244
      }
Line 27776... Line 28616...
27776
        }
28616
        }
27777
        switch (field.id) {
28617
        switch (field.id) {
27778
          case 0: // SUCCESS
28618
          case 0: // SUCCESS
27779
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
28619
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
27780
              {
28620
              {
27781
                org.apache.thrift.protocol.TList _list65 = iprot.readListBegin();
28621
                org.apache.thrift.protocol.TList _list74 = iprot.readListBegin();
27782
                this.success = new ArrayList<Long>(_list65.size);
28622
                this.success = new ArrayList<Long>(_list74.size);
27783
                for (int _i66 = 0; _i66 < _list65.size; ++_i66)
28623
                for (int _i75 = 0; _i75 < _list74.size; ++_i75)
27784
                {
28624
                {
27785
                  long _elem67; // required
28625
                  long _elem76; // required
27786
                  _elem67 = iprot.readI64();
28626
                  _elem76 = iprot.readI64();
27787
                  this.success.add(_elem67);
28627
                  this.success.add(_elem76);
27788
                }
28628
                }
27789
                iprot.readListEnd();
28629
                iprot.readListEnd();
27790
              }
28630
              }
27791
            } else { 
28631
            } else { 
27792
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
28632
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 27814... Line 28654...
27814
 
28654
 
27815
      if (this.isSetSuccess()) {
28655
      if (this.isSetSuccess()) {
27816
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
28656
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
27817
        {
28657
        {
27818
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
28658
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
27819
          for (long _iter68 : this.success)
28659
          for (long _iter77 : this.success)
27820
          {
28660
          {
27821
            oprot.writeI64(_iter68);
28661
            oprot.writeI64(_iter77);
27822
          }
28662
          }
27823
          oprot.writeListEnd();
28663
          oprot.writeListEnd();
27824
        }
28664
        }
27825
        oprot.writeFieldEnd();
28665
        oprot.writeFieldEnd();
27826
      } else if (this.isSetCex()) {
28666
      } else if (this.isSetCex()) {
Line 30576... Line 31416...
30576
        }
31416
        }
30577
        switch (field.id) {
31417
        switch (field.id) {
30578
          case 0: // SUCCESS
31418
          case 0: // SUCCESS
30579
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
31419
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
30580
              {
31420
              {
30581
                org.apache.thrift.protocol.TList _list69 = iprot.readListBegin();
31421
                org.apache.thrift.protocol.TList _list78 = iprot.readListBegin();
30582
                this.success = new ArrayList<Category>(_list69.size);
31422
                this.success = new ArrayList<Category>(_list78.size);
30583
                for (int _i70 = 0; _i70 < _list69.size; ++_i70)
31423
                for (int _i79 = 0; _i79 < _list78.size; ++_i79)
30584
                {
31424
                {
30585
                  Category _elem71; // required
31425
                  Category _elem80; // required
30586
                  _elem71 = new Category();
31426
                  _elem80 = new Category();
30587
                  _elem71.read(iprot);
31427
                  _elem80.read(iprot);
30588
                  this.success.add(_elem71);
31428
                  this.success.add(_elem80);
30589
                }
31429
                }
30590
                iprot.readListEnd();
31430
                iprot.readListEnd();
30591
              }
31431
              }
30592
            } else { 
31432
            } else { 
30593
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
31433
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 30607... Line 31447...
30607
 
31447
 
30608
      if (this.isSetSuccess()) {
31448
      if (this.isSetSuccess()) {
30609
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
31449
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
30610
        {
31450
        {
30611
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
31451
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
30612
          for (Category _iter72 : this.success)
31452
          for (Category _iter81 : this.success)
30613
          {
31453
          {
30614
            _iter72.write(oprot);
31454
            _iter81.write(oprot);
30615
          }
31455
          }
30616
          oprot.writeListEnd();
31456
          oprot.writeListEnd();
30617
        }
31457
        }
30618
        oprot.writeFieldEnd();
31458
        oprot.writeFieldEnd();
30619
      }
31459
      }
Line 31201... Line 32041...
31201
        }
32041
        }
31202
        switch (field.id) {
32042
        switch (field.id) {
31203
          case 0: // SUCCESS
32043
          case 0: // SUCCESS
31204
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
32044
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
31205
              {
32045
              {
31206
                org.apache.thrift.protocol.TList _list73 = iprot.readListBegin();
32046
                org.apache.thrift.protocol.TList _list82 = iprot.readListBegin();
31207
                this.success = new ArrayList<Item>(_list73.size);
32047
                this.success = new ArrayList<Item>(_list82.size);
31208
                for (int _i74 = 0; _i74 < _list73.size; ++_i74)
32048
                for (int _i83 = 0; _i83 < _list82.size; ++_i83)
31209
                {
32049
                {
31210
                  Item _elem75; // required
32050
                  Item _elem84; // required
31211
                  _elem75 = new Item();
32051
                  _elem84 = new Item();
31212
                  _elem75.read(iprot);
32052
                  _elem84.read(iprot);
31213
                  this.success.add(_elem75);
32053
                  this.success.add(_elem84);
31214
                }
32054
                }
31215
                iprot.readListEnd();
32055
                iprot.readListEnd();
31216
              }
32056
              }
31217
            } else { 
32057
            } else { 
31218
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
32058
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 31232... Line 32072...
31232
 
32072
 
31233
      if (this.isSetSuccess()) {
32073
      if (this.isSetSuccess()) {
31234
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
32074
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
31235
        {
32075
        {
31236
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
32076
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
31237
          for (Item _iter76 : this.success)
32077
          for (Item _iter85 : this.success)
31238
          {
32078
          {
31239
            _iter76.write(oprot);
32079
            _iter85.write(oprot);
31240
          }
32080
          }
31241
          oprot.writeListEnd();
32081
          oprot.writeListEnd();
31242
        }
32082
        }
31243
        oprot.writeFieldEnd();
32083
        oprot.writeFieldEnd();
31244
      }
32084
      }
Line 34428... Line 35268...
34428
        }
35268
        }
34429
        switch (field.id) {
35269
        switch (field.id) {
34430
          case 0: // SUCCESS
35270
          case 0: // SUCCESS
34431
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
35271
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
34432
              {
35272
              {
34433
                org.apache.thrift.protocol.TList _list77 = iprot.readListBegin();
35273
                org.apache.thrift.protocol.TList _list86 = iprot.readListBegin();
34434
                this.success = new ArrayList<String>(_list77.size);
35274
                this.success = new ArrayList<String>(_list86.size);
34435
                for (int _i78 = 0; _i78 < _list77.size; ++_i78)
35275
                for (int _i87 = 0; _i87 < _list86.size; ++_i87)
34436
                {
35276
                {
34437
                  String _elem79; // required
35277
                  String _elem88; // required
34438
                  _elem79 = iprot.readString();
35278
                  _elem88 = iprot.readString();
34439
                  this.success.add(_elem79);
35279
                  this.success.add(_elem88);
34440
                }
35280
                }
34441
                iprot.readListEnd();
35281
                iprot.readListEnd();
34442
              }
35282
              }
34443
            } else { 
35283
            } else { 
34444
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
35284
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 34458... Line 35298...
34458
 
35298
 
34459
      if (this.isSetSuccess()) {
35299
      if (this.isSetSuccess()) {
34460
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
35300
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
34461
        {
35301
        {
34462
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.success.size()));
35302
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.success.size()));
34463
          for (String _iter80 : this.success)
35303
          for (String _iter89 : this.success)
34464
          {
35304
          {
34465
            oprot.writeString(_iter80);
35305
            oprot.writeString(_iter89);
34466
          }
35306
          }
34467
          oprot.writeListEnd();
35307
          oprot.writeListEnd();
34468
        }
35308
        }
34469
        oprot.writeFieldEnd();
35309
        oprot.writeFieldEnd();
34470
      }
35310
      }
Line 35052... Line 35892...
35052
        }
35892
        }
35053
        switch (field.id) {
35893
        switch (field.id) {
35054
          case 0: // SUCCESS
35894
          case 0: // SUCCESS
35055
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
35895
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
35056
              {
35896
              {
35057
                org.apache.thrift.protocol.TList _list81 = iprot.readListBegin();
35897
                org.apache.thrift.protocol.TList _list90 = iprot.readListBegin();
35058
                this.success = new ArrayList<Long>(_list81.size);
35898
                this.success = new ArrayList<Long>(_list90.size);
35059
                for (int _i82 = 0; _i82 < _list81.size; ++_i82)
35899
                for (int _i91 = 0; _i91 < _list90.size; ++_i91)
35060
                {
35900
                {
35061
                  long _elem83; // required
35901
                  long _elem92; // required
35062
                  _elem83 = iprot.readI64();
35902
                  _elem92 = iprot.readI64();
35063
                  this.success.add(_elem83);
35903
                  this.success.add(_elem92);
35064
                }
35904
                }
35065
                iprot.readListEnd();
35905
                iprot.readListEnd();
35066
              }
35906
              }
35067
            } else { 
35907
            } else { 
35068
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
35908
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 35082... Line 35922...
35082
 
35922
 
35083
      if (this.isSetSuccess()) {
35923
      if (this.isSetSuccess()) {
35084
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
35924
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
35085
        {
35925
        {
35086
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
35926
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
35087
          for (long _iter84 : this.success)
35927
          for (long _iter93 : this.success)
35088
          {
35928
          {
35089
            oprot.writeI64(_iter84);
35929
            oprot.writeI64(_iter93);
35090
          }
35930
          }
35091
          oprot.writeListEnd();
35931
          oprot.writeListEnd();
35092
        }
35932
        }
35093
        oprot.writeFieldEnd();
35933
        oprot.writeFieldEnd();
35094
      }
35934
      }
Line 35591... Line 36431...
35591
        }
36431
        }
35592
        switch (field.id) {
36432
        switch (field.id) {
35593
          case 0: // SUCCESS
36433
          case 0: // SUCCESS
35594
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
36434
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
35595
              {
36435
              {
35596
                org.apache.thrift.protocol.TMap _map85 = iprot.readMapBegin();
36436
                org.apache.thrift.protocol.TMap _map94 = iprot.readMapBegin();
35597
                this.success = new HashMap<Long,List<String>>(2*_map85.size);
36437
                this.success = new HashMap<Long,List<String>>(2*_map94.size);
35598
                for (int _i86 = 0; _i86 < _map85.size; ++_i86)
36438
                for (int _i95 = 0; _i95 < _map94.size; ++_i95)
35599
                {
36439
                {
35600
                  long _key87; // required
36440
                  long _key96; // required
35601
                  List<String> _val88; // required
36441
                  List<String> _val97; // required
35602
                  _key87 = iprot.readI64();
36442
                  _key96 = iprot.readI64();
35603
                  {
36443
                  {
35604
                    org.apache.thrift.protocol.TList _list89 = iprot.readListBegin();
36444
                    org.apache.thrift.protocol.TList _list98 = iprot.readListBegin();
35605
                    _val88 = new ArrayList<String>(_list89.size);
36445
                    _val97 = new ArrayList<String>(_list98.size);
35606
                    for (int _i90 = 0; _i90 < _list89.size; ++_i90)
36446
                    for (int _i99 = 0; _i99 < _list98.size; ++_i99)
35607
                    {
36447
                    {
35608
                      String _elem91; // required
36448
                      String _elem100; // required
35609
                      _elem91 = iprot.readString();
36449
                      _elem100 = iprot.readString();
35610
                      _val88.add(_elem91);
36450
                      _val97.add(_elem100);
35611
                    }
36451
                    }
35612
                    iprot.readListEnd();
36452
                    iprot.readListEnd();
35613
                  }
36453
                  }
35614
                  this.success.put(_key87, _val88);
36454
                  this.success.put(_key96, _val97);
35615
                }
36455
                }
35616
                iprot.readMapEnd();
36456
                iprot.readMapEnd();
35617
              }
36457
              }
35618
            } else { 
36458
            } else { 
35619
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
36459
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 35633... Line 36473...
35633
 
36473
 
35634
      if (this.isSetSuccess()) {
36474
      if (this.isSetSuccess()) {
35635
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
36475
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
35636
        {
36476
        {
35637
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, this.success.size()));
36477
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, this.success.size()));
35638
          for (Map.Entry<Long, List<String>> _iter92 : this.success.entrySet())
36478
          for (Map.Entry<Long, List<String>> _iter101 : this.success.entrySet())
35639
          {
36479
          {
35640
            oprot.writeI64(_iter92.getKey());
36480
            oprot.writeI64(_iter101.getKey());
35641
            {
36481
            {
35642
              oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter92.getValue().size()));
36482
              oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter101.getValue().size()));
35643
              for (String _iter93 : _iter92.getValue())
36483
              for (String _iter102 : _iter101.getValue())
35644
              {
36484
              {
35645
                oprot.writeString(_iter93);
36485
                oprot.writeString(_iter102);
35646
              }
36486
              }
35647
              oprot.writeListEnd();
36487
              oprot.writeListEnd();
35648
            }
36488
            }
35649
          }
36489
          }
35650
          oprot.writeMapEnd();
36490
          oprot.writeMapEnd();
Line 37158... Line 37998...
37158
        }
37998
        }
37159
        switch (field.id) {
37999
        switch (field.id) {
37160
          case 0: // SUCCESS
38000
          case 0: // SUCCESS
37161
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
38001
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
37162
              {
38002
              {
37163
                org.apache.thrift.protocol.TList _list94 = iprot.readListBegin();
38003
                org.apache.thrift.protocol.TList _list103 = iprot.readListBegin();
37164
                this.success = new ArrayList<String>(_list94.size);
38004
                this.success = new ArrayList<String>(_list103.size);
37165
                for (int _i95 = 0; _i95 < _list94.size; ++_i95)
38005
                for (int _i104 = 0; _i104 < _list103.size; ++_i104)
37166
                {
38006
                {
37167
                  String _elem96; // required
38007
                  String _elem105; // required
37168
                  _elem96 = iprot.readString();
38008
                  _elem105 = iprot.readString();
37169
                  this.success.add(_elem96);
38009
                  this.success.add(_elem105);
37170
                }
38010
                }
37171
                iprot.readListEnd();
38011
                iprot.readListEnd();
37172
              }
38012
              }
37173
            } else { 
38013
            } else { 
37174
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
38014
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 37188... Line 38028...
37188
 
38028
 
37189
      if (this.isSetSuccess()) {
38029
      if (this.isSetSuccess()) {
37190
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
38030
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
37191
        {
38031
        {
37192
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.success.size()));
38032
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.success.size()));
37193
          for (String _iter97 : this.success)
38033
          for (String _iter106 : this.success)
37194
          {
38034
          {
37195
            oprot.writeString(_iter97);
38035
            oprot.writeString(_iter106);
37196
          }
38036
          }
37197
          oprot.writeListEnd();
38037
          oprot.writeListEnd();
37198
        }
38038
        }
37199
        oprot.writeFieldEnd();
38039
        oprot.writeFieldEnd();
37200
      }
38040
      }
Line 38863... Line 39703...
38863
        }
39703
        }
38864
        switch (field.id) {
39704
        switch (field.id) {
38865
          case 0: // SUCCESS
39705
          case 0: // SUCCESS
38866
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
39706
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
38867
              {
39707
              {
38868
                org.apache.thrift.protocol.TList _list98 = iprot.readListBegin();
39708
                org.apache.thrift.protocol.TList _list107 = iprot.readListBegin();
38869
                this.success = new ArrayList<Banner>(_list98.size);
39709
                this.success = new ArrayList<Banner>(_list107.size);
38870
                for (int _i99 = 0; _i99 < _list98.size; ++_i99)
39710
                for (int _i108 = 0; _i108 < _list107.size; ++_i108)
38871
                {
39711
                {
38872
                  Banner _elem100; // required
39712
                  Banner _elem109; // required
38873
                  _elem100 = new Banner();
39713
                  _elem109 = new Banner();
38874
                  _elem100.read(iprot);
39714
                  _elem109.read(iprot);
38875
                  this.success.add(_elem100);
39715
                  this.success.add(_elem109);
38876
                }
39716
                }
38877
                iprot.readListEnd();
39717
                iprot.readListEnd();
38878
              }
39718
              }
38879
            } else { 
39719
            } else { 
38880
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
39720
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 38894... Line 39734...
38894
 
39734
 
38895
      if (this.isSetSuccess()) {
39735
      if (this.isSetSuccess()) {
38896
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
39736
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
38897
        {
39737
        {
38898
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
39738
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
38899
          for (Banner _iter101 : this.success)
39739
          for (Banner _iter110 : this.success)
38900
          {
39740
          {
38901
            _iter101.write(oprot);
39741
            _iter110.write(oprot);
38902
          }
39742
          }
38903
          oprot.writeListEnd();
39743
          oprot.writeListEnd();
38904
        }
39744
        }
38905
        oprot.writeFieldEnd();
39745
        oprot.writeFieldEnd();
38906
      }
39746
      }
Line 40838... Line 41678...
40838
        }
41678
        }
40839
        switch (field.id) {
41679
        switch (field.id) {
40840
          case 0: // SUCCESS
41680
          case 0: // SUCCESS
40841
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
41681
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
40842
              {
41682
              {
40843
                org.apache.thrift.protocol.TList _list102 = iprot.readListBegin();
41683
                org.apache.thrift.protocol.TList _list111 = iprot.readListBegin();
40844
                this.success = new ArrayList<BannerMap>(_list102.size);
41684
                this.success = new ArrayList<BannerMap>(_list111.size);
40845
                for (int _i103 = 0; _i103 < _list102.size; ++_i103)
41685
                for (int _i112 = 0; _i112 < _list111.size; ++_i112)
40846
                {
41686
                {
40847
                  BannerMap _elem104; // required
41687
                  BannerMap _elem113; // required
40848
                  _elem104 = new BannerMap();
41688
                  _elem113 = new BannerMap();
40849
                  _elem104.read(iprot);
41689
                  _elem113.read(iprot);
40850
                  this.success.add(_elem104);
41690
                  this.success.add(_elem113);
40851
                }
41691
                }
40852
                iprot.readListEnd();
41692
                iprot.readListEnd();
40853
              }
41693
              }
40854
            } else { 
41694
            } else { 
40855
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
41695
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 40869... Line 41709...
40869
 
41709
 
40870
      if (this.isSetSuccess()) {
41710
      if (this.isSetSuccess()) {
40871
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
41711
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
40872
        {
41712
        {
40873
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
41713
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
40874
          for (BannerMap _iter105 : this.success)
41714
          for (BannerMap _iter114 : this.success)
40875
          {
41715
          {
40876
            _iter105.write(oprot);
41716
            _iter114.write(oprot);
40877
          }
41717
          }
40878
          oprot.writeListEnd();
41718
          oprot.writeListEnd();
40879
        }
41719
        }
40880
        oprot.writeFieldEnd();
41720
        oprot.writeFieldEnd();
40881
      }
41721
      }
Line 44045... Line 44885...
44045
        }
44885
        }
44046
        switch (field.id) {
44886
        switch (field.id) {
44047
          case 0: // SUCCESS
44887
          case 0: // SUCCESS
44048
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
44888
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
44049
              {
44889
              {
44050
                org.apache.thrift.protocol.TList _list106 = iprot.readListBegin();
44890
                org.apache.thrift.protocol.TList _list115 = iprot.readListBegin();
44051
                this.success = new ArrayList<Item>(_list106.size);
44891
                this.success = new ArrayList<Item>(_list115.size);
44052
                for (int _i107 = 0; _i107 < _list106.size; ++_i107)
44892
                for (int _i116 = 0; _i116 < _list115.size; ++_i116)
44053
                {
44893
                {
44054
                  Item _elem108; // required
44894
                  Item _elem117; // required
44055
                  _elem108 = new Item();
44895
                  _elem117 = new Item();
44056
                  _elem108.read(iprot);
44896
                  _elem117.read(iprot);
44057
                  this.success.add(_elem108);
44897
                  this.success.add(_elem117);
44058
                }
44898
                }
44059
                iprot.readListEnd();
44899
                iprot.readListEnd();
44060
              }
44900
              }
44061
            } else { 
44901
            } else { 
44062
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
44902
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 44076... Line 44916...
44076
 
44916
 
44077
      if (this.isSetSuccess()) {
44917
      if (this.isSetSuccess()) {
44078
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
44918
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
44079
        {
44919
        {
44080
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
44920
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
44081
          for (Item _iter109 : this.success)
44921
          for (Item _iter118 : this.success)
44082
          {
44922
          {
44083
            _iter109.write(oprot);
44923
            _iter118.write(oprot);
44084
          }
44924
          }
44085
          oprot.writeListEnd();
44925
          oprot.writeListEnd();
44086
        }
44926
        }
44087
        oprot.writeFieldEnd();
44927
        oprot.writeFieldEnd();
44088
      }
44928
      }
Line 44758... Line 45598...
44758
        }
45598
        }
44759
        switch (field.id) {
45599
        switch (field.id) {
44760
          case 0: // SUCCESS
45600
          case 0: // SUCCESS
44761
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
45601
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
44762
              {
45602
              {
44763
                org.apache.thrift.protocol.TList _list110 = iprot.readListBegin();
45603
                org.apache.thrift.protocol.TList _list119 = iprot.readListBegin();
44764
                this.success = new ArrayList<Item>(_list110.size);
45604
                this.success = new ArrayList<Item>(_list119.size);
44765
                for (int _i111 = 0; _i111 < _list110.size; ++_i111)
45605
                for (int _i120 = 0; _i120 < _list119.size; ++_i120)
44766
                {
45606
                {
44767
                  Item _elem112; // required
45607
                  Item _elem121; // required
44768
                  _elem112 = new Item();
45608
                  _elem121 = new Item();
44769
                  _elem112.read(iprot);
45609
                  _elem121.read(iprot);
44770
                  this.success.add(_elem112);
45610
                  this.success.add(_elem121);
44771
                }
45611
                }
44772
                iprot.readListEnd();
45612
                iprot.readListEnd();
44773
              }
45613
              }
44774
            } else { 
45614
            } else { 
44775
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
45615
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 44789... Line 45629...
44789
 
45629
 
44790
      if (this.isSetSuccess()) {
45630
      if (this.isSetSuccess()) {
44791
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
45631
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
44792
        {
45632
        {
44793
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
45633
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
44794
          for (Item _iter113 : this.success)
45634
          for (Item _iter122 : this.success)
44795
          {
45635
          {
44796
            _iter113.write(oprot);
45636
            _iter122.write(oprot);
44797
          }
45637
          }
44798
          oprot.writeListEnd();
45638
          oprot.writeListEnd();
44799
        }
45639
        }
44800
        oprot.writeFieldEnd();
45640
        oprot.writeFieldEnd();
44801
      }
45641
      }
Line 45547... Line 46387...
45547
        }
46387
        }
45548
        switch (field.id) {
46388
        switch (field.id) {
45549
          case 0: // SUCCESS
46389
          case 0: // SUCCESS
45550
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
46390
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
45551
              {
46391
              {
45552
                org.apache.thrift.protocol.TList _list114 = iprot.readListBegin();
46392
                org.apache.thrift.protocol.TList _list123 = iprot.readListBegin();
45553
                this.success = new ArrayList<Long>(_list114.size);
46393
                this.success = new ArrayList<Long>(_list123.size);
45554
                for (int _i115 = 0; _i115 < _list114.size; ++_i115)
46394
                for (int _i124 = 0; _i124 < _list123.size; ++_i124)
45555
                {
46395
                {
45556
                  long _elem116; // required
46396
                  long _elem125; // required
45557
                  _elem116 = iprot.readI64();
46397
                  _elem125 = iprot.readI64();
45558
                  this.success.add(_elem116);
46398
                  this.success.add(_elem125);
45559
                }
46399
                }
45560
                iprot.readListEnd();
46400
                iprot.readListEnd();
45561
              }
46401
              }
45562
            } else { 
46402
            } else { 
45563
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
46403
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 45577... Line 46417...
45577
 
46417
 
45578
      if (this.isSetSuccess()) {
46418
      if (this.isSetSuccess()) {
45579
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
46419
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
45580
        {
46420
        {
45581
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
46421
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.success.size()));
45582
          for (long _iter117 : this.success)
46422
          for (long _iter126 : this.success)
45583
          {
46423
          {
45584
            oprot.writeI64(_iter117);
46424
            oprot.writeI64(_iter126);
45585
          }
46425
          }
45586
          oprot.writeListEnd();
46426
          oprot.writeListEnd();
45587
        }
46427
        }
45588
        oprot.writeFieldEnd();
46428
        oprot.writeFieldEnd();
45589
      }
46429
      }
Line 47339... Line 48179...
47339
        }
48179
        }
47340
        switch (field.id) {
48180
        switch (field.id) {
47341
          case 0: // SUCCESS
48181
          case 0: // SUCCESS
47342
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
48182
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
47343
              {
48183
              {
47344
                org.apache.thrift.protocol.TList _list118 = iprot.readListBegin();
48184
                org.apache.thrift.protocol.TList _list127 = iprot.readListBegin();
47345
                this.success = new ArrayList<String>(_list118.size);
48185
                this.success = new ArrayList<String>(_list127.size);
47346
                for (int _i119 = 0; _i119 < _list118.size; ++_i119)
48186
                for (int _i128 = 0; _i128 < _list127.size; ++_i128)
47347
                {
48187
                {
47348
                  String _elem120; // required
48188
                  String _elem129; // required
47349
                  _elem120 = iprot.readString();
48189
                  _elem129 = iprot.readString();
47350
                  this.success.add(_elem120);
48190
                  this.success.add(_elem129);
47351
                }
48191
                }
47352
                iprot.readListEnd();
48192
                iprot.readListEnd();
47353
              }
48193
              }
47354
            } else { 
48194
            } else { 
47355
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
48195
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 47369... Line 48209...
47369
 
48209
 
47370
      if (this.isSetSuccess()) {
48210
      if (this.isSetSuccess()) {
47371
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
48211
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
47372
        {
48212
        {
47373
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.success.size()));
48213
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.success.size()));
47374
          for (String _iter121 : this.success)
48214
          for (String _iter130 : this.success)
47375
          {
48215
          {
47376
            oprot.writeString(_iter121);
48216
            oprot.writeString(_iter130);
47377
          }
48217
          }
47378
          oprot.writeListEnd();
48218
          oprot.writeListEnd();
47379
        }
48219
        }
47380
        oprot.writeFieldEnd();
48220
        oprot.writeFieldEnd();
47381
      }
48221
      }
Line 47869... Line 48709...
47869
        }
48709
        }
47870
        switch (field.id) {
48710
        switch (field.id) {
47871
          case 0: // SUCCESS
48711
          case 0: // SUCCESS
47872
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
48712
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
47873
              {
48713
              {
47874
                org.apache.thrift.protocol.TList _list122 = iprot.readListBegin();
48714
                org.apache.thrift.protocol.TList _list131 = iprot.readListBegin();
47875
                this.success = new ArrayList<String>(_list122.size);
48715
                this.success = new ArrayList<String>(_list131.size);
47876
                for (int _i123 = 0; _i123 < _list122.size; ++_i123)
48716
                for (int _i132 = 0; _i132 < _list131.size; ++_i132)
47877
                {
48717
                {
47878
                  String _elem124; // required
48718
                  String _elem133; // required
47879
                  _elem124 = iprot.readString();
48719
                  _elem133 = iprot.readString();
47880
                  this.success.add(_elem124);
48720
                  this.success.add(_elem133);
47881
                }
48721
                }
47882
                iprot.readListEnd();
48722
                iprot.readListEnd();
47883
              }
48723
              }
47884
            } else { 
48724
            } else { 
47885
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
48725
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 47899... Line 48739...
47899
 
48739
 
47900
      if (this.isSetSuccess()) {
48740
      if (this.isSetSuccess()) {
47901
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
48741
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
47902
        {
48742
        {
47903
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.success.size()));
48743
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.success.size()));
47904
          for (String _iter125 : this.success)
48744
          for (String _iter134 : this.success)
47905
          {
48745
          {
47906
            oprot.writeString(_iter125);
48746
            oprot.writeString(_iter134);
47907
          }
48747
          }
47908
          oprot.writeListEnd();
48748
          oprot.writeListEnd();
47909
        }
48749
        }
47910
        oprot.writeFieldEnd();
48750
        oprot.writeFieldEnd();
47911
      }
48751
      }
Line 48399... Line 49239...
48399
        }
49239
        }
48400
        switch (field.id) {
49240
        switch (field.id) {
48401
          case 0: // SUCCESS
49241
          case 0: // SUCCESS
48402
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
49242
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
48403
              {
49243
              {
48404
                org.apache.thrift.protocol.TList _list126 = iprot.readListBegin();
49244
                org.apache.thrift.protocol.TList _list135 = iprot.readListBegin();
48405
                this.success = new ArrayList<Source>(_list126.size);
49245
                this.success = new ArrayList<Source>(_list135.size);
48406
                for (int _i127 = 0; _i127 < _list126.size; ++_i127)
49246
                for (int _i136 = 0; _i136 < _list135.size; ++_i136)
48407
                {
49247
                {
48408
                  Source _elem128; // required
49248
                  Source _elem137; // required
48409
                  _elem128 = new Source();
49249
                  _elem137 = new Source();
48410
                  _elem128.read(iprot);
49250
                  _elem137.read(iprot);
48411
                  this.success.add(_elem128);
49251
                  this.success.add(_elem137);
48412
                }
49252
                }
48413
                iprot.readListEnd();
49253
                iprot.readListEnd();
48414
              }
49254
              }
48415
            } else { 
49255
            } else { 
48416
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
49256
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 48430... Line 49270...
48430
 
49270
 
48431
      if (this.isSetSuccess()) {
49271
      if (this.isSetSuccess()) {
48432
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
49272
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
48433
        {
49273
        {
48434
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
49274
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
48435
          for (Source _iter129 : this.success)
49275
          for (Source _iter138 : this.success)
48436
          {
49276
          {
48437
            _iter129.write(oprot);
49277
            _iter138.write(oprot);
48438
          }
49278
          }
48439
          oprot.writeListEnd();
49279
          oprot.writeListEnd();
48440
        }
49280
        }
48441
        oprot.writeFieldEnd();
49281
        oprot.writeFieldEnd();
48442
      }
49282
      }
Line 50436... Line 51276...
50436
        }
51276
        }
50437
        switch (field.id) {
51277
        switch (field.id) {
50438
          case 0: // SUCCESS
51278
          case 0: // SUCCESS
50439
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
51279
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
50440
              {
51280
              {
50441
                org.apache.thrift.protocol.TList _list130 = iprot.readListBegin();
51281
                org.apache.thrift.protocol.TList _list139 = iprot.readListBegin();
50442
                this.success = new ArrayList<SourceItemPricing>(_list130.size);
51282
                this.success = new ArrayList<SourceItemPricing>(_list139.size);
50443
                for (int _i131 = 0; _i131 < _list130.size; ++_i131)
51283
                for (int _i140 = 0; _i140 < _list139.size; ++_i140)
50444
                {
51284
                {
50445
                  SourceItemPricing _elem132; // required
51285
                  SourceItemPricing _elem141; // required
50446
                  _elem132 = new SourceItemPricing();
51286
                  _elem141 = new SourceItemPricing();
50447
                  _elem132.read(iprot);
51287
                  _elem141.read(iprot);
50448
                  this.success.add(_elem132);
51288
                  this.success.add(_elem141);
50449
                }
51289
                }
50450
                iprot.readListEnd();
51290
                iprot.readListEnd();
50451
              }
51291
              }
50452
            } else { 
51292
            } else { 
50453
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
51293
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 50475... Line 51315...
50475
 
51315
 
50476
      if (this.isSetSuccess()) {
51316
      if (this.isSetSuccess()) {
50477
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
51317
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
50478
        {
51318
        {
50479
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
51319
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
50480
          for (SourceItemPricing _iter133 : this.success)
51320
          for (SourceItemPricing _iter142 : this.success)
50481
          {
51321
          {
50482
            _iter133.write(oprot);
51322
            _iter142.write(oprot);
50483
          }
51323
          }
50484
          oprot.writeListEnd();
51324
          oprot.writeListEnd();
50485
        }
51325
        }
50486
        oprot.writeFieldEnd();
51326
        oprot.writeFieldEnd();
50487
      } else if (this.isSetCex()) {
51327
      } else if (this.isSetCex()) {
Line 51683... Line 52523...
51683
        }
52523
        }
51684
        switch (field.id) {
52524
        switch (field.id) {
51685
          case 1: // SEARCH_TERMS
52525
          case 1: // SEARCH_TERMS
51686
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
52526
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
51687
              {
52527
              {
51688
                org.apache.thrift.protocol.TList _list134 = iprot.readListBegin();
52528
                org.apache.thrift.protocol.TList _list143 = iprot.readListBegin();
51689
                this.searchTerms = new ArrayList<String>(_list134.size);
52529
                this.searchTerms = new ArrayList<String>(_list143.size);
51690
                for (int _i135 = 0; _i135 < _list134.size; ++_i135)
52530
                for (int _i144 = 0; _i144 < _list143.size; ++_i144)
51691
                {
52531
                {
51692
                  String _elem136; // required
52532
                  String _elem145; // required
51693
                  _elem136 = iprot.readString();
52533
                  _elem145 = iprot.readString();
51694
                  this.searchTerms.add(_elem136);
52534
                  this.searchTerms.add(_elem145);
51695
                }
52535
                }
51696
                iprot.readListEnd();
52536
                iprot.readListEnd();
51697
              }
52537
              }
51698
            } else { 
52538
            } else { 
51699
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
52539
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 51730... Line 52570...
51730
      oprot.writeStructBegin(STRUCT_DESC);
52570
      oprot.writeStructBegin(STRUCT_DESC);
51731
      if (this.searchTerms != null) {
52571
      if (this.searchTerms != null) {
51732
        oprot.writeFieldBegin(SEARCH_TERMS_FIELD_DESC);
52572
        oprot.writeFieldBegin(SEARCH_TERMS_FIELD_DESC);
51733
        {
52573
        {
51734
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.searchTerms.size()));
52574
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.searchTerms.size()));
51735
          for (String _iter137 : this.searchTerms)
52575
          for (String _iter146 : this.searchTerms)
51736
          {
52576
          {
51737
            oprot.writeString(_iter137);
52577
            oprot.writeString(_iter146);
51738
          }
52578
          }
51739
          oprot.writeListEnd();
52579
          oprot.writeListEnd();
51740
        }
52580
        }
51741
        oprot.writeFieldEnd();
52581
        oprot.writeFieldEnd();
51742
      }
52582
      }
Line 52044... Line 52884...
52044
        }
52884
        }
52045
        switch (field.id) {
52885
        switch (field.id) {
52046
          case 0: // SUCCESS
52886
          case 0: // SUCCESS
52047
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
52887
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
52048
              {
52888
              {
52049
                org.apache.thrift.protocol.TList _list138 = iprot.readListBegin();
52889
                org.apache.thrift.protocol.TList _list147 = iprot.readListBegin();
52050
                this.success = new ArrayList<Item>(_list138.size);
52890
                this.success = new ArrayList<Item>(_list147.size);
52051
                for (int _i139 = 0; _i139 < _list138.size; ++_i139)
52891
                for (int _i148 = 0; _i148 < _list147.size; ++_i148)
52052
                {
52892
                {
52053
                  Item _elem140; // required
52893
                  Item _elem149; // required
52054
                  _elem140 = new Item();
52894
                  _elem149 = new Item();
52055
                  _elem140.read(iprot);
52895
                  _elem149.read(iprot);
52056
                  this.success.add(_elem140);
52896
                  this.success.add(_elem149);
52057
                }
52897
                }
52058
                iprot.readListEnd();
52898
                iprot.readListEnd();
52059
              }
52899
              }
52060
            } else { 
52900
            } else { 
52061
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
52901
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 52075... Line 52915...
52075
 
52915
 
52076
      if (this.isSetSuccess()) {
52916
      if (this.isSetSuccess()) {
52077
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
52917
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
52078
        {
52918
        {
52079
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
52919
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
52080
          for (Item _iter141 : this.success)
52920
          for (Item _iter150 : this.success)
52081
          {
52921
          {
52082
            _iter141.write(oprot);
52922
            _iter150.write(oprot);
52083
          }
52923
          }
52084
          oprot.writeListEnd();
52924
          oprot.writeListEnd();
52085
        }
52925
        }
52086
        oprot.writeFieldEnd();
52926
        oprot.writeFieldEnd();
52087
      }
52927
      }
Line 52375... Line 53215...
52375
        }
53215
        }
52376
        switch (field.id) {
53216
        switch (field.id) {
52377
          case 1: // SEARCH_TERMS
53217
          case 1: // SEARCH_TERMS
52378
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
53218
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
52379
              {
53219
              {
52380
                org.apache.thrift.protocol.TList _list142 = iprot.readListBegin();
53220
                org.apache.thrift.protocol.TList _list151 = iprot.readListBegin();
52381
                this.searchTerms = new ArrayList<String>(_list142.size);
53221
                this.searchTerms = new ArrayList<String>(_list151.size);
52382
                for (int _i143 = 0; _i143 < _list142.size; ++_i143)
53222
                for (int _i152 = 0; _i152 < _list151.size; ++_i152)
52383
                {
53223
                {
52384
                  String _elem144; // required
53224
                  String _elem153; // required
52385
                  _elem144 = iprot.readString();
53225
                  _elem153 = iprot.readString();
52386
                  this.searchTerms.add(_elem144);
53226
                  this.searchTerms.add(_elem153);
52387
                }
53227
                }
52388
                iprot.readListEnd();
53228
                iprot.readListEnd();
52389
              }
53229
              }
52390
            } else { 
53230
            } else { 
52391
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
53231
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 52406... Line 53246...
52406
      oprot.writeStructBegin(STRUCT_DESC);
53246
      oprot.writeStructBegin(STRUCT_DESC);
52407
      if (this.searchTerms != null) {
53247
      if (this.searchTerms != null) {
52408
        oprot.writeFieldBegin(SEARCH_TERMS_FIELD_DESC);
53248
        oprot.writeFieldBegin(SEARCH_TERMS_FIELD_DESC);
52409
        {
53249
        {
52410
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.searchTerms.size()));
53250
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, this.searchTerms.size()));
52411
          for (String _iter145 : this.searchTerms)
53251
          for (String _iter154 : this.searchTerms)
52412
          {
53252
          {
52413
            oprot.writeString(_iter145);
53253
            oprot.writeString(_iter154);
52414
          }
53254
          }
52415
          oprot.writeListEnd();
53255
          oprot.writeListEnd();
52416
        }
53256
        }
52417
        oprot.writeFieldEnd();
53257
        oprot.writeFieldEnd();
52418
      }
53258
      }
Line 53293... Line 54133...
53293
        }
54133
        }
53294
        switch (field.id) {
54134
        switch (field.id) {
53295
          case 0: // SUCCESS
54135
          case 0: // SUCCESS
53296
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
54136
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
53297
              {
54137
              {
53298
                org.apache.thrift.protocol.TList _list146 = iprot.readListBegin();
54138
                org.apache.thrift.protocol.TList _list155 = iprot.readListBegin();
53299
                this.success = new ArrayList<ProductNotificationRequest>(_list146.size);
54139
                this.success = new ArrayList<ProductNotificationRequest>(_list155.size);
53300
                for (int _i147 = 0; _i147 < _list146.size; ++_i147)
54140
                for (int _i156 = 0; _i156 < _list155.size; ++_i156)
53301
                {
54141
                {
53302
                  ProductNotificationRequest _elem148; // required
54142
                  ProductNotificationRequest _elem157; // required
53303
                  _elem148 = new ProductNotificationRequest();
54143
                  _elem157 = new ProductNotificationRequest();
53304
                  _elem148.read(iprot);
54144
                  _elem157.read(iprot);
53305
                  this.success.add(_elem148);
54145
                  this.success.add(_elem157);
53306
                }
54146
                }
53307
                iprot.readListEnd();
54147
                iprot.readListEnd();
53308
              }
54148
              }
53309
            } else { 
54149
            } else { 
53310
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
54150
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 53324... Line 54164...
53324
 
54164
 
53325
      if (this.isSetSuccess()) {
54165
      if (this.isSetSuccess()) {
53326
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
54166
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
53327
        {
54167
        {
53328
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
54168
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
53329
          for (ProductNotificationRequest _iter149 : this.success)
54169
          for (ProductNotificationRequest _iter158 : this.success)
53330
          {
54170
          {
53331
            _iter149.write(oprot);
54171
            _iter158.write(oprot);
53332
          }
54172
          }
53333
          oprot.writeListEnd();
54173
          oprot.writeListEnd();
53334
        }
54174
        }
53335
        oprot.writeFieldEnd();
54175
        oprot.writeFieldEnd();
53336
      }
54176
      }
Line 53918... Line 54758...
53918
        }
54758
        }
53919
        switch (field.id) {
54759
        switch (field.id) {
53920
          case 0: // SUCCESS
54760
          case 0: // SUCCESS
53921
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
54761
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
53922
              {
54762
              {
53923
                org.apache.thrift.protocol.TList _list150 = iprot.readListBegin();
54763
                org.apache.thrift.protocol.TList _list159 = iprot.readListBegin();
53924
                this.success = new ArrayList<ProductNotificationRequestCount>(_list150.size);
54764
                this.success = new ArrayList<ProductNotificationRequestCount>(_list159.size);
53925
                for (int _i151 = 0; _i151 < _list150.size; ++_i151)
54765
                for (int _i160 = 0; _i160 < _list159.size; ++_i160)
53926
                {
54766
                {
53927
                  ProductNotificationRequestCount _elem152; // required
54767
                  ProductNotificationRequestCount _elem161; // required
53928
                  _elem152 = new ProductNotificationRequestCount();
54768
                  _elem161 = new ProductNotificationRequestCount();
53929
                  _elem152.read(iprot);
54769
                  _elem161.read(iprot);
53930
                  this.success.add(_elem152);
54770
                  this.success.add(_elem161);
53931
                }
54771
                }
53932
                iprot.readListEnd();
54772
                iprot.readListEnd();
53933
              }
54773
              }
53934
            } else { 
54774
            } else { 
53935
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
54775
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 53949... Line 54789...
53949
 
54789
 
53950
      if (this.isSetSuccess()) {
54790
      if (this.isSetSuccess()) {
53951
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
54791
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
53952
        {
54792
        {
53953
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
54793
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
53954
          for (ProductNotificationRequestCount _iter153 : this.success)
54794
          for (ProductNotificationRequestCount _iter162 : this.success)
53955
          {
54795
          {
53956
            _iter153.write(oprot);
54796
            _iter162.write(oprot);
53957
          }
54797
          }
53958
          oprot.writeListEnd();
54798
          oprot.writeListEnd();
53959
        }
54799
        }
53960
        oprot.writeFieldEnd();
54800
        oprot.writeFieldEnd();
53961
      }
54801
      }
Line 57663... Line 58503...
57663
        }
58503
        }
57664
        switch (field.id) {
58504
        switch (field.id) {
57665
          case 0: // SUCCESS
58505
          case 0: // SUCCESS
57666
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
58506
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
57667
              {
58507
              {
57668
                org.apache.thrift.protocol.TList _list154 = iprot.readListBegin();
58508
                org.apache.thrift.protocol.TList _list163 = iprot.readListBegin();
57669
                this.success = new ArrayList<VoucherItemMapping>(_list154.size);
58509
                this.success = new ArrayList<VoucherItemMapping>(_list163.size);
57670
                for (int _i155 = 0; _i155 < _list154.size; ++_i155)
58510
                for (int _i164 = 0; _i164 < _list163.size; ++_i164)
57671
                {
58511
                {
57672
                  VoucherItemMapping _elem156; // required
58512
                  VoucherItemMapping _elem165; // required
57673
                  _elem156 = new VoucherItemMapping();
58513
                  _elem165 = new VoucherItemMapping();
57674
                  _elem156.read(iprot);
58514
                  _elem165.read(iprot);
57675
                  this.success.add(_elem156);
58515
                  this.success.add(_elem165);
57676
                }
58516
                }
57677
                iprot.readListEnd();
58517
                iprot.readListEnd();
57678
              }
58518
              }
57679
            } else { 
58519
            } else { 
57680
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
58520
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 57694... Line 58534...
57694
 
58534
 
57695
      if (this.isSetSuccess()) {
58535
      if (this.isSetSuccess()) {
57696
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
58536
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
57697
        {
58537
        {
57698
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
58538
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
57699
          for (VoucherItemMapping _iter157 : this.success)
58539
          for (VoucherItemMapping _iter166 : this.success)
57700
          {
58540
          {
57701
            _iter157.write(oprot);
58541
            _iter166.write(oprot);
57702
          }
58542
          }
57703
          oprot.writeListEnd();
58543
          oprot.writeListEnd();
57704
        }
58544
        }
57705
        oprot.writeFieldEnd();
58545
        oprot.writeFieldEnd();
57706
      }
58546
      }
Line 60469... Line 61309...
60469
        }
61309
        }
60470
        switch (field.id) {
61310
        switch (field.id) {
60471
          case 0: // SUCCESS
61311
          case 0: // SUCCESS
60472
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
61312
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
60473
              {
61313
              {
60474
                org.apache.thrift.protocol.TList _list158 = iprot.readListBegin();
61314
                org.apache.thrift.protocol.TList _list167 = iprot.readListBegin();
60475
                this.success = new ArrayList<Item>(_list158.size);
61315
                this.success = new ArrayList<Item>(_list167.size);
60476
                for (int _i159 = 0; _i159 < _list158.size; ++_i159)
61316
                for (int _i168 = 0; _i168 < _list167.size; ++_i168)
60477
                {
61317
                {
60478
                  Item _elem160; // required
61318
                  Item _elem169; // required
60479
                  _elem160 = new Item();
61319
                  _elem169 = new Item();
60480
                  _elem160.read(iprot);
61320
                  _elem169.read(iprot);
60481
                  this.success.add(_elem160);
61321
                  this.success.add(_elem169);
60482
                }
61322
                }
60483
                iprot.readListEnd();
61323
                iprot.readListEnd();
60484
              }
61324
              }
60485
            } else { 
61325
            } else { 
60486
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
61326
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 60500... Line 61340...
60500
 
61340
 
60501
      if (this.isSetSuccess()) {
61341
      if (this.isSetSuccess()) {
60502
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
61342
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
60503
        {
61343
        {
60504
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
61344
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
60505
          for (Item _iter161 : this.success)
61345
          for (Item _iter170 : this.success)
60506
          {
61346
          {
60507
            _iter161.write(oprot);
61347
            _iter170.write(oprot);
60508
          }
61348
          }
60509
          oprot.writeListEnd();
61349
          oprot.writeListEnd();
60510
        }
61350
        }
60511
        oprot.writeFieldEnd();
61351
        oprot.writeFieldEnd();
60512
      }
61352
      }
Line 61000... Line 61840...
61000
        }
61840
        }
61001
        switch (field.id) {
61841
        switch (field.id) {
61002
          case 0: // SUCCESS
61842
          case 0: // SUCCESS
61003
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
61843
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
61004
              {
61844
              {
61005
                org.apache.thrift.protocol.TList _list162 = iprot.readListBegin();
61845
                org.apache.thrift.protocol.TList _list171 = iprot.readListBegin();
61006
                this.success = new ArrayList<Item>(_list162.size);
61846
                this.success = new ArrayList<Item>(_list171.size);
61007
                for (int _i163 = 0; _i163 < _list162.size; ++_i163)
61847
                for (int _i172 = 0; _i172 < _list171.size; ++_i172)
61008
                {
61848
                {
61009
                  Item _elem164; // required
61849
                  Item _elem173; // required
61010
                  _elem164 = new Item();
61850
                  _elem173 = new Item();
61011
                  _elem164.read(iprot);
61851
                  _elem173.read(iprot);
61012
                  this.success.add(_elem164);
61852
                  this.success.add(_elem173);
61013
                }
61853
                }
61014
                iprot.readListEnd();
61854
                iprot.readListEnd();
61015
              }
61855
              }
61016
            } else { 
61856
            } else { 
61017
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
61857
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 61031... Line 61871...
61031
 
61871
 
61032
      if (this.isSetSuccess()) {
61872
      if (this.isSetSuccess()) {
61033
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
61873
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
61034
        {
61874
        {
61035
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
61875
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
61036
          for (Item _iter165 : this.success)
61876
          for (Item _iter174 : this.success)
61037
          {
61877
          {
61038
            _iter165.write(oprot);
61878
            _iter174.write(oprot);
61039
          }
61879
          }
61040
          oprot.writeListEnd();
61880
          oprot.writeListEnd();
61041
        }
61881
        }
61042
        oprot.writeFieldEnd();
61882
        oprot.writeFieldEnd();
61043
      }
61883
      }
Line 62953... Line 63793...
62953
        }
63793
        }
62954
        switch (field.id) {
63794
        switch (field.id) {
62955
          case 0: // SUCCESS
63795
          case 0: // SUCCESS
62956
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
63796
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
62957
              {
63797
              {
62958
                org.apache.thrift.protocol.TList _list166 = iprot.readListBegin();
63798
                org.apache.thrift.protocol.TList _list175 = iprot.readListBegin();
62959
                this.success = new ArrayList<Insurer>(_list166.size);
63799
                this.success = new ArrayList<Insurer>(_list175.size);
62960
                for (int _i167 = 0; _i167 < _list166.size; ++_i167)
63800
                for (int _i176 = 0; _i176 < _list175.size; ++_i176)
62961
                {
63801
                {
62962
                  Insurer _elem168; // required
63802
                  Insurer _elem177; // required
62963
                  _elem168 = new Insurer();
63803
                  _elem177 = new Insurer();
62964
                  _elem168.read(iprot);
63804
                  _elem177.read(iprot);
62965
                  this.success.add(_elem168);
63805
                  this.success.add(_elem177);
62966
                }
63806
                }
62967
                iprot.readListEnd();
63807
                iprot.readListEnd();
62968
              }
63808
              }
62969
            } else { 
63809
            } else { 
62970
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
63810
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 62984... Line 63824...
62984
 
63824
 
62985
      if (this.isSetSuccess()) {
63825
      if (this.isSetSuccess()) {
62986
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
63826
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
62987
        {
63827
        {
62988
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
63828
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
62989
          for (Insurer _iter169 : this.success)
63829
          for (Insurer _iter178 : this.success)
62990
          {
63830
          {
62991
            _iter169.write(oprot);
63831
            _iter178.write(oprot);
62992
          }
63832
          }
62993
          oprot.writeListEnd();
63833
          oprot.writeListEnd();
62994
        }
63834
        }
62995
        oprot.writeFieldEnd();
63835
        oprot.writeFieldEnd();
62996
      }
63836
      }
Line 65640... Line 66480...
65640
        }
66480
        }
65641
        switch (field.id) {
66481
        switch (field.id) {
65642
          case 0: // SUCCESS
66482
          case 0: // SUCCESS
65643
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
66483
            if (field.type == org.apache.thrift.protocol.TType.MAP) {
65644
              {
66484
              {
65645
                org.apache.thrift.protocol.TMap _map170 = iprot.readMapBegin();
66485
                org.apache.thrift.protocol.TMap _map179 = iprot.readMapBegin();
65646
                this.success = new HashMap<String,BrandInfo>(2*_map170.size);
66486
                this.success = new HashMap<String,BrandInfo>(2*_map179.size);
65647
                for (int _i171 = 0; _i171 < _map170.size; ++_i171)
66487
                for (int _i180 = 0; _i180 < _map179.size; ++_i180)
65648
                {
66488
                {
65649
                  String _key172; // required
66489
                  String _key181; // required
65650
                  BrandInfo _val173; // required
66490
                  BrandInfo _val182; // required
65651
                  _key172 = iprot.readString();
66491
                  _key181 = iprot.readString();
65652
                  _val173 = new BrandInfo();
66492
                  _val182 = new BrandInfo();
65653
                  _val173.read(iprot);
66493
                  _val182.read(iprot);
65654
                  this.success.put(_key172, _val173);
66494
                  this.success.put(_key181, _val182);
65655
                }
66495
                }
65656
                iprot.readMapEnd();
66496
                iprot.readMapEnd();
65657
              }
66497
              }
65658
            } else { 
66498
            } else { 
65659
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
66499
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 65673... Line 66513...
65673
 
66513
 
65674
      if (this.isSetSuccess()) {
66514
      if (this.isSetSuccess()) {
65675
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
66515
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
65676
        {
66516
        {
65677
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
66517
          oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
65678
          for (Map.Entry<String, BrandInfo> _iter174 : this.success.entrySet())
66518
          for (Map.Entry<String, BrandInfo> _iter183 : this.success.entrySet())
65679
          {
66519
          {
65680
            oprot.writeString(_iter174.getKey());
66520
            oprot.writeString(_iter183.getKey());
65681
            _iter174.getValue().write(oprot);
66521
            _iter183.getValue().write(oprot);
65682
          }
66522
          }
65683
          oprot.writeMapEnd();
66523
          oprot.writeMapEnd();
65684
        }
66524
        }
65685
        oprot.writeFieldEnd();
66525
        oprot.writeFieldEnd();
65686
      }
66526
      }
Line 66562... Line 67402...
66562
        }
67402
        }
66563
        switch (field.id) {
67403
        switch (field.id) {
66564
          case 1: // ITEM_IDS
67404
          case 1: // ITEM_IDS
66565
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
67405
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
66566
              {
67406
              {
66567
                org.apache.thrift.protocol.TList _list175 = iprot.readListBegin();
67407
                org.apache.thrift.protocol.TList _list184 = iprot.readListBegin();
66568
                this.itemIds = new ArrayList<Long>(_list175.size);
67408
                this.itemIds = new ArrayList<Long>(_list184.size);
66569
                for (int _i176 = 0; _i176 < _list175.size; ++_i176)
67409
                for (int _i185 = 0; _i185 < _list184.size; ++_i185)
66570
                {
67410
                {
66571
                  long _elem177; // required
67411
                  long _elem186; // required
66572
                  _elem177 = iprot.readI64();
67412
                  _elem186 = iprot.readI64();
66573
                  this.itemIds.add(_elem177);
67413
                  this.itemIds.add(_elem186);
66574
                }
67414
                }
66575
                iprot.readListEnd();
67415
                iprot.readListEnd();
66576
              }
67416
              }
66577
            } else { 
67417
            } else { 
66578
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
67418
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 66593... Line 67433...
66593
      oprot.writeStructBegin(STRUCT_DESC);
67433
      oprot.writeStructBegin(STRUCT_DESC);
66594
      if (this.itemIds != null) {
67434
      if (this.itemIds != null) {
66595
        oprot.writeFieldBegin(ITEM_IDS_FIELD_DESC);
67435
        oprot.writeFieldBegin(ITEM_IDS_FIELD_DESC);
66596
        {
67436
        {
66597
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.itemIds.size()));
67437
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, this.itemIds.size()));
66598
          for (long _iter178 : this.itemIds)
67438
          for (long _iter187 : this.itemIds)
66599
          {
67439
          {
66600
            oprot.writeI64(_iter178);
67440
            oprot.writeI64(_iter187);
66601
          }
67441
          }
66602
          oprot.writeListEnd();
67442
          oprot.writeListEnd();
66603
        }
67443
        }
66604
        oprot.writeFieldEnd();
67444
        oprot.writeFieldEnd();
66605
      }
67445
      }
Line 66893... Line 67733...
66893
        }
67733
        }
66894
        switch (field.id) {
67734
        switch (field.id) {
66895
          case 0: // SUCCESS
67735
          case 0: // SUCCESS
66896
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
67736
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
66897
              {
67737
              {
66898
                org.apache.thrift.protocol.TList _list179 = iprot.readListBegin();
67738
                org.apache.thrift.protocol.TList _list188 = iprot.readListBegin();
66899
                this.success = new ArrayList<StorePricing>(_list179.size);
67739
                this.success = new ArrayList<StorePricing>(_list188.size);
66900
                for (int _i180 = 0; _i180 < _list179.size; ++_i180)
67740
                for (int _i189 = 0; _i189 < _list188.size; ++_i189)
66901
                {
67741
                {
66902
                  StorePricing _elem181; // required
67742
                  StorePricing _elem190; // required
66903
                  _elem181 = new StorePricing();
67743
                  _elem190 = new StorePricing();
66904
                  _elem181.read(iprot);
67744
                  _elem190.read(iprot);
66905
                  this.success.add(_elem181);
67745
                  this.success.add(_elem190);
66906
                }
67746
                }
66907
                iprot.readListEnd();
67747
                iprot.readListEnd();
66908
              }
67748
              }
66909
            } else { 
67749
            } else { 
66910
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
67750
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 66924... Line 67764...
66924
 
67764
 
66925
      if (this.isSetSuccess()) {
67765
      if (this.isSetSuccess()) {
66926
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
67766
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
66927
        {
67767
        {
66928
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
67768
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
66929
          for (StorePricing _iter182 : this.success)
67769
          for (StorePricing _iter191 : this.success)
66930
          {
67770
          {
66931
            _iter182.write(oprot);
67771
            _iter191.write(oprot);
66932
          }
67772
          }
66933
          oprot.writeListEnd();
67773
          oprot.writeListEnd();
66934
        }
67774
        }
66935
        oprot.writeFieldEnd();
67775
        oprot.writeFieldEnd();
66936
      }
67776
      }
Line 68006... Line 68846...
68006
        }
68846
        }
68007
        switch (field.id) {
68847
        switch (field.id) {
68008
          case 0: // SUCCESS
68848
          case 0: // SUCCESS
68009
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
68849
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
68010
              {
68850
              {
68011
                org.apache.thrift.protocol.TList _list183 = iprot.readListBegin();
68851
                org.apache.thrift.protocol.TList _list192 = iprot.readListBegin();
68012
                this.success = new ArrayList<Amazonlisted>(_list183.size);
68852
                this.success = new ArrayList<Amazonlisted>(_list192.size);
68013
                for (int _i184 = 0; _i184 < _list183.size; ++_i184)
68853
                for (int _i193 = 0; _i193 < _list192.size; ++_i193)
68014
                {
68854
                {
68015
                  Amazonlisted _elem185; // required
68855
                  Amazonlisted _elem194; // required
68016
                  _elem185 = new Amazonlisted();
68856
                  _elem194 = new Amazonlisted();
68017
                  _elem185.read(iprot);
68857
                  _elem194.read(iprot);
68018
                  this.success.add(_elem185);
68858
                  this.success.add(_elem194);
68019
                }
68859
                }
68020
                iprot.readListEnd();
68860
                iprot.readListEnd();
68021
              }
68861
              }
68022
            } else { 
68862
            } else { 
68023
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
68863
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 68037... Line 68877...
68037
 
68877
 
68038
      if (this.isSetSuccess()) {
68878
      if (this.isSetSuccess()) {
68039
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
68879
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
68040
        {
68880
        {
68041
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
68881
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
68042
          for (Amazonlisted _iter186 : this.success)
68882
          for (Amazonlisted _iter195 : this.success)
68043
          {
68883
          {
68044
            _iter186.write(oprot);
68884
            _iter195.write(oprot);
68045
          }
68885
          }
68046
          oprot.writeListEnd();
68886
          oprot.writeListEnd();
68047
        }
68887
        }
68048
        oprot.writeFieldEnd();
68888
        oprot.writeFieldEnd();
68049
      }
68889
      }
Line 70693... Line 71533...
70693
        }
71533
        }
70694
        switch (field.id) {
71534
        switch (field.id) {
70695
          case 0: // SUCCESS
71535
          case 0: // SUCCESS
70696
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
71536
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
70697
              {
71537
              {
70698
                org.apache.thrift.protocol.TList _list187 = iprot.readListBegin();
71538
                org.apache.thrift.protocol.TList _list196 = iprot.readListBegin();
70699
                this.success = new ArrayList<Item>(_list187.size);
71539
                this.success = new ArrayList<Item>(_list196.size);
70700
                for (int _i188 = 0; _i188 < _list187.size; ++_i188)
71540
                for (int _i197 = 0; _i197 < _list196.size; ++_i197)
70701
                {
71541
                {
70702
                  Item _elem189; // required
71542
                  Item _elem198; // required
70703
                  _elem189 = new Item();
71543
                  _elem198 = new Item();
70704
                  _elem189.read(iprot);
71544
                  _elem198.read(iprot);
70705
                  this.success.add(_elem189);
71545
                  this.success.add(_elem198);
70706
                }
71546
                }
70707
                iprot.readListEnd();
71547
                iprot.readListEnd();
70708
              }
71548
              }
70709
            } else { 
71549
            } else { 
70710
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
71550
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 70724... Line 71564...
70724
 
71564
 
70725
      if (this.isSetSuccess()) {
71565
      if (this.isSetSuccess()) {
70726
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
71566
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
70727
        {
71567
        {
70728
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
71568
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
70729
          for (Item _iter190 : this.success)
71569
          for (Item _iter199 : this.success)
70730
          {
71570
          {
70731
            _iter190.write(oprot);
71571
            _iter199.write(oprot);
70732
          }
71572
          }
70733
          oprot.writeListEnd();
71573
          oprot.writeListEnd();
70734
        }
71574
        }
70735
        oprot.writeFieldEnd();
71575
        oprot.writeFieldEnd();
70736
      }
71576
      }
Line 71224... Line 72064...
71224
        }
72064
        }
71225
        switch (field.id) {
72065
        switch (field.id) {
71226
          case 0: // SUCCESS
72066
          case 0: // SUCCESS
71227
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
72067
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
71228
              {
72068
              {
71229
                org.apache.thrift.protocol.TList _list191 = iprot.readListBegin();
72069
                org.apache.thrift.protocol.TList _list200 = iprot.readListBegin();
71230
                this.success = new ArrayList<Amazonlisted>(_list191.size);
72070
                this.success = new ArrayList<Amazonlisted>(_list200.size);
71231
                for (int _i192 = 0; _i192 < _list191.size; ++_i192)
72071
                for (int _i201 = 0; _i201 < _list200.size; ++_i201)
71232
                {
72072
                {
71233
                  Amazonlisted _elem193; // required
72073
                  Amazonlisted _elem202; // required
71234
                  _elem193 = new Amazonlisted();
72074
                  _elem202 = new Amazonlisted();
71235
                  _elem193.read(iprot);
72075
                  _elem202.read(iprot);
71236
                  this.success.add(_elem193);
72076
                  this.success.add(_elem202);
71237
                }
72077
                }
71238
                iprot.readListEnd();
72078
                iprot.readListEnd();
71239
              }
72079
              }
71240
            } else { 
72080
            } else { 
71241
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
72081
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 71255... Line 72095...
71255
 
72095
 
71256
      if (this.isSetSuccess()) {
72096
      if (this.isSetSuccess()) {
71257
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
72097
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
71258
        {
72098
        {
71259
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
72099
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
71260
          for (Amazonlisted _iter194 : this.success)
72100
          for (Amazonlisted _iter203 : this.success)
71261
          {
72101
          {
71262
            _iter194.write(oprot);
72102
            _iter203.write(oprot);
71263
          }
72103
          }
71264
          oprot.writeListEnd();
72104
          oprot.writeListEnd();
71265
        }
72105
        }
71266
        oprot.writeFieldEnd();
72106
        oprot.writeFieldEnd();
71267
      }
72107
      }
Line 71755... Line 72595...
71755
        }
72595
        }
71756
        switch (field.id) {
72596
        switch (field.id) {
71757
          case 0: // SUCCESS
72597
          case 0: // SUCCESS
71758
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
72598
            if (field.type == org.apache.thrift.protocol.TType.LIST) {
71759
              {
72599
              {
71760
                org.apache.thrift.protocol.TList _list195 = iprot.readListBegin();
72600
                org.apache.thrift.protocol.TList _list204 = iprot.readListBegin();
71761
                this.success = new ArrayList<Amazonlisted>(_list195.size);
72601
                this.success = new ArrayList<Amazonlisted>(_list204.size);
71762
                for (int _i196 = 0; _i196 < _list195.size; ++_i196)
72602
                for (int _i205 = 0; _i205 < _list204.size; ++_i205)
71763
                {
72603
                {
71764
                  Amazonlisted _elem197; // required
72604
                  Amazonlisted _elem206; // required
71765
                  _elem197 = new Amazonlisted();
72605
                  _elem206 = new Amazonlisted();
71766
                  _elem197.read(iprot);
72606
                  _elem206.read(iprot);
71767
                  this.success.add(_elem197);
72607
                  this.success.add(_elem206);
71768
                }
72608
                }
71769
                iprot.readListEnd();
72609
                iprot.readListEnd();
71770
              }
72610
              }
71771
            } else { 
72611
            } else { 
71772
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
72612
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
Line 71786... Line 72626...
71786
 
72626
 
71787
      if (this.isSetSuccess()) {
72627
      if (this.isSetSuccess()) {
71788
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
72628
        oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
71789
        {
72629
        {
71790
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
72630
          oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, this.success.size()));
71791
          for (Amazonlisted _iter198 : this.success)
72631
          for (Amazonlisted _iter207 : this.success)
71792
          {
72632
          {
71793
            _iter198.write(oprot);
72633
            _iter207.write(oprot);
71794
          }
72634
          }
71795
          oprot.writeListEnd();
72635
          oprot.writeListEnd();
71796
        }
72636
        }
71797
        oprot.writeFieldEnd();
72637
        oprot.writeFieldEnd();
71798
      }
72638
      }