Subversion Repositories SmartDukaan

Rev

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

Rev 3226 Rev 3374
Line 23... Line 23...
23
import org.apache.thrift.meta_data.*;
23
import org.apache.thrift.meta_data.*;
24
import org.apache.thrift.protocol.*;
24
import org.apache.thrift.protocol.*;
25
 
25
 
26
public class TransactionService {
26
public class TransactionService {
27
 
27
 
28
  public interface Iface {
-
 
29
 
-
 
30
    /**
-
 
31
     * For closing the open session in sqlalchemy
-
 
32
     */
-
 
33
    public void closeSession() throws TException;
28
  public interface Iface extends in.shop2020.generic.GenericService.Iface {
34
 
29
 
35
    public long createTransaction(Transaction transaction) throws TransactionServiceException, TException;
30
    public long createTransaction(Transaction transaction) throws TransactionServiceException, TException;
36
 
31
 
37
    public Transaction getTransaction(long id) throws TransactionServiceException, TException;
32
    public Transaction getTransaction(long id) throws TransactionServiceException, TException;
38
 
33
 
Line 405... Line 400...
405
     */
400
     */
406
    public long createPurchaseOrder(long warehouseId) throws TransactionServiceException, TException;
401
    public long createPurchaseOrder(long warehouseId) throws TransactionServiceException, TException;
407
 
402
 
408
  }
403
  }
409
 
404
 
410
  public static class Client implements Iface {
405
  public static class Client extends in.shop2020.generic.GenericService.Client implements Iface {
411
    public Client(TProtocol prot)
406
    public Client(TProtocol prot)
412
    {
407
    {
413
      this(prot, prot);
408
      this(prot, prot);
414
    }
409
    }
415
 
410
 
416
    public Client(TProtocol iprot, TProtocol oprot)
411
    public Client(TProtocol iprot, TProtocol oprot)
417
    {
412
    {
418
      iprot_ = iprot;
-
 
419
      oprot_ = oprot;
413
      super(iprot, oprot);
420
    }
-
 
421
 
-
 
422
    protected TProtocol iprot_;
-
 
423
    protected TProtocol oprot_;
-
 
424
 
-
 
425
    protected int seqid_;
-
 
426
 
-
 
427
    public TProtocol getInputProtocol()
-
 
428
    {
-
 
429
      return this.iprot_;
-
 
430
    }
-
 
431
 
-
 
432
    public TProtocol getOutputProtocol()
-
 
433
    {
-
 
434
      return this.oprot_;
-
 
435
    }
-
 
436
 
-
 
437
    public void closeSession() throws TException
-
 
438
    {
-
 
439
      send_closeSession();
-
 
440
      recv_closeSession();
-
 
441
    }
-
 
442
 
-
 
443
    public void send_closeSession() throws TException
-
 
444
    {
-
 
445
      oprot_.writeMessageBegin(new TMessage("closeSession", TMessageType.CALL, seqid_));
-
 
446
      closeSession_args args = new closeSession_args();
-
 
447
      args.write(oprot_);
-
 
448
      oprot_.writeMessageEnd();
-
 
449
      oprot_.getTransport().flush();
-
 
450
    }
-
 
451
 
-
 
452
    public void recv_closeSession() throws TException
-
 
453
    {
-
 
454
      TMessage msg = iprot_.readMessageBegin();
-
 
455
      if (msg.type == TMessageType.EXCEPTION) {
-
 
456
        TApplicationException x = TApplicationException.read(iprot_);
-
 
457
        iprot_.readMessageEnd();
-
 
458
        throw x;
-
 
459
      }
-
 
460
      closeSession_result result = new closeSession_result();
-
 
461
      result.read(iprot_);
-
 
462
      iprot_.readMessageEnd();
-
 
463
      return;
-
 
464
    }
414
    }
465
 
415
 
466
    public long createTransaction(Transaction transaction) throws TransactionServiceException, TException
416
    public long createTransaction(Transaction transaction) throws TransactionServiceException, TException
467
    {
417
    {
468
      send_createTransaction(transaction);
418
      send_createTransaction(transaction);
Line 2226... Line 2176...
2226
      }
2176
      }
2227
      throw new TApplicationException(TApplicationException.MISSING_RESULT, "createPurchaseOrder failed: unknown result");
2177
      throw new TApplicationException(TApplicationException.MISSING_RESULT, "createPurchaseOrder failed: unknown result");
2228
    }
2178
    }
2229
 
2179
 
2230
  }
2180
  }
2231
  public static class Processor implements TProcessor {
2181
  public static class Processor extends in.shop2020.generic.GenericService.Processor implements TProcessor {
2232
    private static final Logger LOGGER = LoggerFactory.getLogger(Processor.class.getName());
2182
    private static final Logger LOGGER = LoggerFactory.getLogger(Processor.class.getName());
2233
    public Processor(Iface iface)
2183
    public Processor(Iface iface)
2234
    {
2184
    {
-
 
2185
      super(iface);
2235
      iface_ = iface;
2186
      iface_ = iface;
2236
      processMap_.put("closeSession", new closeSession());
-
 
2237
      processMap_.put("createTransaction", new createTransaction());
2187
      processMap_.put("createTransaction", new createTransaction());
2238
      processMap_.put("getTransaction", new getTransaction());
2188
      processMap_.put("getTransaction", new getTransaction());
2239
      processMap_.put("getTransactionsForCustomer", new getTransactionsForCustomer());
2189
      processMap_.put("getTransactionsForCustomer", new getTransactionsForCustomer());
2240
      processMap_.put("getTransactionsForShoppingCartId", new getTransactionsForShoppingCartId());
2190
      processMap_.put("getTransactionsForShoppingCartId", new getTransactionsForShoppingCartId());
2241
      processMap_.put("getTransactionStatus", new getTransactionStatus());
2191
      processMap_.put("getTransactionStatus", new getTransactionStatus());
Line 2283... Line 2233...
2283
      processMap_.put("getReturnOrder", new getReturnOrder());
2233
      processMap_.put("getReturnOrder", new getReturnOrder());
2284
      processMap_.put("processReturn", new processReturn());
2234
      processMap_.put("processReturn", new processReturn());
2285
      processMap_.put("createPurchaseOrder", new createPurchaseOrder());
2235
      processMap_.put("createPurchaseOrder", new createPurchaseOrder());
2286
    }
2236
    }
2287
 
2237
 
2288
    protected static interface ProcessFunction {
-
 
2289
      public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException;
-
 
2290
    }
-
 
2291
 
-
 
2292
    private Iface iface_;
2238
    private Iface iface_;
2293
    protected final HashMap<String,ProcessFunction> processMap_ = new HashMap<String,ProcessFunction>();
-
 
2294
 
2239
 
2295
    public boolean process(TProtocol iprot, TProtocol oprot) throws TException
2240
    public boolean process(TProtocol iprot, TProtocol oprot) throws TException
2296
    {
2241
    {
2297
      TMessage msg = iprot.readMessageBegin();
2242
      TMessage msg = iprot.readMessageBegin();
2298
      ProcessFunction fn = processMap_.get(msg.name);
2243
      ProcessFunction fn = processMap_.get(msg.name);
Line 2308... Line 2253...
2308
      }
2253
      }
2309
      fn.process(msg.seqid, iprot, oprot);
2254
      fn.process(msg.seqid, iprot, oprot);
2310
      return true;
2255
      return true;
2311
    }
2256
    }
2312
 
2257
 
2313
    private class closeSession implements ProcessFunction {
-
 
2314
      public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
-
 
2315
      {
-
 
2316
        closeSession_args args = new closeSession_args();
-
 
2317
        args.read(iprot);
-
 
2318
        iprot.readMessageEnd();
-
 
2319
        closeSession_result result = new closeSession_result();
-
 
2320
        iface_.closeSession();
-
 
2321
        oprot.writeMessageBegin(new TMessage("closeSession", TMessageType.REPLY, seqid));
-
 
2322
        result.write(oprot);
-
 
2323
        oprot.writeMessageEnd();
-
 
2324
        oprot.getTransport().flush();
-
 
2325
      }
-
 
2326
 
-
 
2327
    }
-
 
2328
 
-
 
2329
    private class createTransaction implements ProcessFunction {
2258
    private class createTransaction implements ProcessFunction {
2330
      public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
2259
      public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
2331
      {
2260
      {
2332
        createTransaction_args args = new createTransaction_args();
2261
        createTransaction_args args = new createTransaction_args();
2333
        args.read(iprot);
2262
        args.read(iprot);
Line 3612... Line 3541...
3612
 
3541
 
3613
    }
3542
    }
3614
 
3543
 
3615
  }
3544
  }
3616
 
3545
 
3617
  public static class closeSession_args implements TBase<closeSession_args._Fields>, java.io.Serializable, Cloneable, Comparable<closeSession_args>   {
-
 
3618
    private static final TStruct STRUCT_DESC = new TStruct("closeSession_args");
-
 
3619
 
-
 
3620
 
-
 
3621
 
-
 
3622
    /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
-
 
3623
    public enum _Fields implements TFieldIdEnum {
-
 
3624
;
-
 
3625
 
-
 
3626
      private static final Map<Integer, _Fields> byId = new HashMap<Integer, _Fields>();
-
 
3627
      private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
-
 
3628
 
-
 
3629
      static {
-
 
3630
        for (_Fields field : EnumSet.allOf(_Fields.class)) {
-
 
3631
          byId.put((int)field._thriftId, field);
-
 
3632
          byName.put(field.getFieldName(), field);
-
 
3633
        }
-
 
3634
      }
-
 
3635
 
-
 
3636
      /**
-
 
3637
       * Find the _Fields constant that matches fieldId, or null if its not found.
-
 
3638
       */
-
 
3639
      public static _Fields findByThriftId(int fieldId) {
-
 
3640
        return byId.get(fieldId);
-
 
3641
      }
-
 
3642
 
-
 
3643
      /**
-
 
3644
       * Find the _Fields constant that matches fieldId, throwing an exception
-
 
3645
       * if it is not found.
-
 
3646
       */
-
 
3647
      public static _Fields findByThriftIdOrThrow(int fieldId) {
-
 
3648
        _Fields fields = findByThriftId(fieldId);
-
 
3649
        if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
-
 
3650
        return fields;
-
 
3651
      }
-
 
3652
 
-
 
3653
      /**
-
 
3654
       * Find the _Fields constant that matches name, or null if its not found.
-
 
3655
       */
-
 
3656
      public static _Fields findByName(String name) {
-
 
3657
        return byName.get(name);
-
 
3658
      }
-
 
3659
 
-
 
3660
      private final short _thriftId;
-
 
3661
      private final String _fieldName;
-
 
3662
 
-
 
3663
      _Fields(short thriftId, String fieldName) {
-
 
3664
        _thriftId = thriftId;
-
 
3665
        _fieldName = fieldName;
-
 
3666
      }
-
 
3667
 
-
 
3668
      public short getThriftFieldId() {
-
 
3669
        return _thriftId;
-
 
3670
      }
-
 
3671
 
-
 
3672
      public String getFieldName() {
-
 
3673
        return _fieldName;
-
 
3674
      }
-
 
3675
    }
-
 
3676
    public static final Map<_Fields, FieldMetaData> metaDataMap = Collections.unmodifiableMap(new EnumMap<_Fields, FieldMetaData>(_Fields.class) {{
-
 
3677
    }});
-
 
3678
 
-
 
3679
    static {
-
 
3680
      FieldMetaData.addStructMetaDataMap(closeSession_args.class, metaDataMap);
-
 
3681
    }
-
 
3682
 
-
 
3683
    public closeSession_args() {
-
 
3684
    }
-
 
3685
 
-
 
3686
    /**
-
 
3687
     * Performs a deep copy on <i>other</i>.
-
 
3688
     */
-
 
3689
    public closeSession_args(closeSession_args other) {
-
 
3690
    }
-
 
3691
 
-
 
3692
    public closeSession_args deepCopy() {
-
 
3693
      return new closeSession_args(this);
-
 
3694
    }
-
 
3695
 
-
 
3696
    @Deprecated
-
 
3697
    public closeSession_args clone() {
-
 
3698
      return new closeSession_args(this);
-
 
3699
    }
-
 
3700
 
-
 
3701
    public void setFieldValue(_Fields field, Object value) {
-
 
3702
      switch (field) {
-
 
3703
      }
-
 
3704
    }
-
 
3705
 
-
 
3706
    public void setFieldValue(int fieldID, Object value) {
-
 
3707
      setFieldValue(_Fields.findByThriftIdOrThrow(fieldID), value);
-
 
3708
    }
-
 
3709
 
-
 
3710
    public Object getFieldValue(_Fields field) {
-
 
3711
      switch (field) {
-
 
3712
      }
-
 
3713
      throw new IllegalStateException();
-
 
3714
    }
-
 
3715
 
-
 
3716
    public Object getFieldValue(int fieldId) {
-
 
3717
      return getFieldValue(_Fields.findByThriftIdOrThrow(fieldId));
-
 
3718
    }
-
 
3719
 
-
 
3720
    /** Returns true if field corresponding to fieldID is set (has been asigned a value) and false otherwise */
-
 
3721
    public boolean isSet(_Fields field) {
-
 
3722
      switch (field) {
-
 
3723
      }
-
 
3724
      throw new IllegalStateException();
-
 
3725
    }
-
 
3726
 
-
 
3727
    public boolean isSet(int fieldID) {
-
 
3728
      return isSet(_Fields.findByThriftIdOrThrow(fieldID));
-
 
3729
    }
-
 
3730
 
-
 
3731
    @Override
-
 
3732
    public boolean equals(Object that) {
-
 
3733
      if (that == null)
-
 
3734
        return false;
-
 
3735
      if (that instanceof closeSession_args)
-
 
3736
        return this.equals((closeSession_args)that);
-
 
3737
      return false;
-
 
3738
    }
-
 
3739
 
-
 
3740
    public boolean equals(closeSession_args that) {
-
 
3741
      if (that == null)
-
 
3742
        return false;
-
 
3743
 
-
 
3744
      return true;
-
 
3745
    }
-
 
3746
 
-
 
3747
    @Override
-
 
3748
    public int hashCode() {
-
 
3749
      return 0;
-
 
3750
    }
-
 
3751
 
-
 
3752
    public int compareTo(closeSession_args other) {
-
 
3753
      if (!getClass().equals(other.getClass())) {
-
 
3754
        return getClass().getName().compareTo(other.getClass().getName());
-
 
3755
      }
-
 
3756
 
-
 
3757
      int lastComparison = 0;
-
 
3758
      closeSession_args typedOther = (closeSession_args)other;
-
 
3759
 
-
 
3760
      return 0;
-
 
3761
    }
-
 
3762
 
-
 
3763
    public void read(TProtocol iprot) throws TException {
-
 
3764
      TField field;
-
 
3765
      iprot.readStructBegin();
-
 
3766
      while (true)
-
 
3767
      {
-
 
3768
        field = iprot.readFieldBegin();
-
 
3769
        if (field.type == TType.STOP) { 
-
 
3770
          break;
-
 
3771
        }
-
 
3772
        _Fields fieldId = _Fields.findByThriftId(field.id);
-
 
3773
        if (fieldId == null) {
-
 
3774
          TProtocolUtil.skip(iprot, field.type);
-
 
3775
        } else {
-
 
3776
          switch (fieldId) {
-
 
3777
          }
-
 
3778
          iprot.readFieldEnd();
-
 
3779
        }
-
 
3780
      }
-
 
3781
      iprot.readStructEnd();
-
 
3782
      validate();
-
 
3783
    }
-
 
3784
 
-
 
3785
    public void write(TProtocol oprot) throws TException {
-
 
3786
      validate();
-
 
3787
 
-
 
3788
      oprot.writeStructBegin(STRUCT_DESC);
-
 
3789
      oprot.writeFieldStop();
-
 
3790
      oprot.writeStructEnd();
-
 
3791
    }
-
 
3792
 
-
 
3793
    @Override
-
 
3794
    public String toString() {
-
 
3795
      StringBuilder sb = new StringBuilder("closeSession_args(");
-
 
3796
      boolean first = true;
-
 
3797
 
-
 
3798
      sb.append(")");
-
 
3799
      return sb.toString();
-
 
3800
    }
-
 
3801
 
-
 
3802
    public void validate() throws TException {
-
 
3803
      // check for required fields
-
 
3804
    }
-
 
3805
 
-
 
3806
  }
-
 
3807
 
-
 
3808
  public static class closeSession_result implements TBase<closeSession_result._Fields>, java.io.Serializable, Cloneable, Comparable<closeSession_result>   {
-
 
3809
    private static final TStruct STRUCT_DESC = new TStruct("closeSession_result");
-
 
3810
 
-
 
3811
 
-
 
3812
 
-
 
3813
    /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
-
 
3814
    public enum _Fields implements TFieldIdEnum {
-
 
3815
;
-
 
3816
 
-
 
3817
      private static final Map<Integer, _Fields> byId = new HashMap<Integer, _Fields>();
-
 
3818
      private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
-
 
3819
 
-
 
3820
      static {
-
 
3821
        for (_Fields field : EnumSet.allOf(_Fields.class)) {
-
 
3822
          byId.put((int)field._thriftId, field);
-
 
3823
          byName.put(field.getFieldName(), field);
-
 
3824
        }
-
 
3825
      }
-
 
3826
 
-
 
3827
      /**
-
 
3828
       * Find the _Fields constant that matches fieldId, or null if its not found.
-
 
3829
       */
-
 
3830
      public static _Fields findByThriftId(int fieldId) {
-
 
3831
        return byId.get(fieldId);
-
 
3832
      }
-
 
3833
 
-
 
3834
      /**
-
 
3835
       * Find the _Fields constant that matches fieldId, throwing an exception
-
 
3836
       * if it is not found.
-
 
3837
       */
-
 
3838
      public static _Fields findByThriftIdOrThrow(int fieldId) {
-
 
3839
        _Fields fields = findByThriftId(fieldId);
-
 
3840
        if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
-
 
3841
        return fields;
-
 
3842
      }
-
 
3843
 
-
 
3844
      /**
-
 
3845
       * Find the _Fields constant that matches name, or null if its not found.
-
 
3846
       */
-
 
3847
      public static _Fields findByName(String name) {
-
 
3848
        return byName.get(name);
-
 
3849
      }
-
 
3850
 
-
 
3851
      private final short _thriftId;
-
 
3852
      private final String _fieldName;
-
 
3853
 
-
 
3854
      _Fields(short thriftId, String fieldName) {
-
 
3855
        _thriftId = thriftId;
-
 
3856
        _fieldName = fieldName;
-
 
3857
      }
-
 
3858
 
-
 
3859
      public short getThriftFieldId() {
-
 
3860
        return _thriftId;
-
 
3861
      }
-
 
3862
 
-
 
3863
      public String getFieldName() {
-
 
3864
        return _fieldName;
-
 
3865
      }
-
 
3866
    }
-
 
3867
    public static final Map<_Fields, FieldMetaData> metaDataMap = Collections.unmodifiableMap(new EnumMap<_Fields, FieldMetaData>(_Fields.class) {{
-
 
3868
    }});
-
 
3869
 
-
 
3870
    static {
-
 
3871
      FieldMetaData.addStructMetaDataMap(closeSession_result.class, metaDataMap);
-
 
3872
    }
-
 
3873
 
-
 
3874
    public closeSession_result() {
-
 
3875
    }
-
 
3876
 
-
 
3877
    /**
-
 
3878
     * Performs a deep copy on <i>other</i>.
-
 
3879
     */
-
 
3880
    public closeSession_result(closeSession_result other) {
-
 
3881
    }
-
 
3882
 
-
 
3883
    public closeSession_result deepCopy() {
-
 
3884
      return new closeSession_result(this);
-
 
3885
    }
-
 
3886
 
-
 
3887
    @Deprecated
-
 
3888
    public closeSession_result clone() {
-
 
3889
      return new closeSession_result(this);
-
 
3890
    }
-
 
3891
 
-
 
3892
    public void setFieldValue(_Fields field, Object value) {
-
 
3893
      switch (field) {
-
 
3894
      }
-
 
3895
    }
-
 
3896
 
-
 
3897
    public void setFieldValue(int fieldID, Object value) {
-
 
3898
      setFieldValue(_Fields.findByThriftIdOrThrow(fieldID), value);
-
 
3899
    }
-
 
3900
 
-
 
3901
    public Object getFieldValue(_Fields field) {
-
 
3902
      switch (field) {
-
 
3903
      }
-
 
3904
      throw new IllegalStateException();
-
 
3905
    }
-
 
3906
 
-
 
3907
    public Object getFieldValue(int fieldId) {
-
 
3908
      return getFieldValue(_Fields.findByThriftIdOrThrow(fieldId));
-
 
3909
    }
-
 
3910
 
-
 
3911
    /** Returns true if field corresponding to fieldID is set (has been asigned a value) and false otherwise */
-
 
3912
    public boolean isSet(_Fields field) {
-
 
3913
      switch (field) {
-
 
3914
      }
-
 
3915
      throw new IllegalStateException();
-
 
3916
    }
-
 
3917
 
-
 
3918
    public boolean isSet(int fieldID) {
-
 
3919
      return isSet(_Fields.findByThriftIdOrThrow(fieldID));
-
 
3920
    }
-
 
3921
 
-
 
3922
    @Override
-
 
3923
    public boolean equals(Object that) {
-
 
3924
      if (that == null)
-
 
3925
        return false;
-
 
3926
      if (that instanceof closeSession_result)
-
 
3927
        return this.equals((closeSession_result)that);
-
 
3928
      return false;
-
 
3929
    }
-
 
3930
 
-
 
3931
    public boolean equals(closeSession_result that) {
-
 
3932
      if (that == null)
-
 
3933
        return false;
-
 
3934
 
-
 
3935
      return true;
-
 
3936
    }
-
 
3937
 
-
 
3938
    @Override
-
 
3939
    public int hashCode() {
-
 
3940
      return 0;
-
 
3941
    }
-
 
3942
 
-
 
3943
    public int compareTo(closeSession_result other) {
-
 
3944
      if (!getClass().equals(other.getClass())) {
-
 
3945
        return getClass().getName().compareTo(other.getClass().getName());
-
 
3946
      }
-
 
3947
 
-
 
3948
      int lastComparison = 0;
-
 
3949
      closeSession_result typedOther = (closeSession_result)other;
-
 
3950
 
-
 
3951
      return 0;
-
 
3952
    }
-
 
3953
 
-
 
3954
    public void read(TProtocol iprot) throws TException {
-
 
3955
      TField field;
-
 
3956
      iprot.readStructBegin();
-
 
3957
      while (true)
-
 
3958
      {
-
 
3959
        field = iprot.readFieldBegin();
-
 
3960
        if (field.type == TType.STOP) { 
-
 
3961
          break;
-
 
3962
        }
-
 
3963
        _Fields fieldId = _Fields.findByThriftId(field.id);
-
 
3964
        if (fieldId == null) {
-
 
3965
          TProtocolUtil.skip(iprot, field.type);
-
 
3966
        } else {
-
 
3967
          switch (fieldId) {
-
 
3968
          }
-
 
3969
          iprot.readFieldEnd();
-
 
3970
        }
-
 
3971
      }
-
 
3972
      iprot.readStructEnd();
-
 
3973
      validate();
-
 
3974
    }
-
 
3975
 
-
 
3976
    public void write(TProtocol oprot) throws TException {
-
 
3977
      oprot.writeStructBegin(STRUCT_DESC);
-
 
3978
 
-
 
3979
      oprot.writeFieldStop();
-
 
3980
      oprot.writeStructEnd();
-
 
3981
    }
-
 
3982
 
-
 
3983
    @Override
-
 
3984
    public String toString() {
-
 
3985
      StringBuilder sb = new StringBuilder("closeSession_result(");
-
 
3986
      boolean first = true;
-
 
3987
 
-
 
3988
      sb.append(")");
-
 
3989
      return sb.toString();
-
 
3990
    }
-
 
3991
 
-
 
3992
    public void validate() throws TException {
-
 
3993
      // check for required fields
-
 
3994
    }
-
 
3995
 
-
 
3996
  }
-
 
3997
 
-
 
3998
  public static class createTransaction_args implements TBase<createTransaction_args._Fields>, java.io.Serializable, Cloneable, Comparable<createTransaction_args>   {
3546
  public static class createTransaction_args implements TBase<createTransaction_args._Fields>, java.io.Serializable, Cloneable, Comparable<createTransaction_args>   {
3999
    private static final TStruct STRUCT_DESC = new TStruct("createTransaction_args");
3547
    private static final TStruct STRUCT_DESC = new TStruct("createTransaction_args");
4000
 
3548
 
4001
    private static final TField TRANSACTION_FIELD_DESC = new TField("transaction", TType.STRUCT, (short)1);
3549
    private static final TField TRANSACTION_FIELD_DESC = new TField("transaction", TType.STRUCT, (short)1);
4002
 
3550