Subversion Repositories SmartDukaan

Rev

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

Rev 3293 Rev 3374
Line 26... Line 26...
26
public class UserContextService {
26
public class UserContextService {
27
 
27
 
28
  /**
28
  /**
29
   * service
29
   * service
30
   */
30
   */
31
  public interface Iface {
-
 
32
 
-
 
33
    /**
-
 
34
     * For closing the open session in sqlalchemy
-
 
35
     */
-
 
36
    public void closeSession() throws TException;
31
  public interface Iface extends in.shop2020.generic.GenericService.Iface {
37
 
32
 
38
    public User createAnonymousUser(String jsessionId) throws UserContextException, TException;
33
    public User createAnonymousUser(String jsessionId) throws UserContextException, TException;
39
 
34
 
40
    public User getUserById(long userId) throws UserContextException, TException;
35
    public User getUserById(long userId) throws UserContextException, TException;
41
 
36
 
Line 249... Line 244...
249
     */
244
     */
250
    public void updateBrowseHistory(long userId, long itemId) throws TException;
245
    public void updateBrowseHistory(long userId, long itemId) throws TException;
251
 
246
 
252
  }
247
  }
253
 
248
 
254
  public static class Client implements Iface {
249
  public static class Client extends in.shop2020.generic.GenericService.Client implements Iface {
255
    public Client(TProtocol prot)
250
    public Client(TProtocol prot)
256
    {
251
    {
257
      this(prot, prot);
252
      this(prot, prot);
258
    }
253
    }
259
 
254
 
260
    public Client(TProtocol iprot, TProtocol oprot)
255
    public Client(TProtocol iprot, TProtocol oprot)
261
    {
256
    {
262
      iprot_ = iprot;
-
 
263
      oprot_ = oprot;
257
      super(iprot, oprot);
264
    }
-
 
265
 
-
 
266
    protected TProtocol iprot_;
-
 
267
    protected TProtocol oprot_;
-
 
268
 
-
 
269
    protected int seqid_;
-
 
270
 
-
 
271
    public TProtocol getInputProtocol()
-
 
272
    {
-
 
273
      return this.iprot_;
-
 
274
    }
-
 
275
 
-
 
276
    public TProtocol getOutputProtocol()
-
 
277
    {
-
 
278
      return this.oprot_;
-
 
279
    }
-
 
280
 
-
 
281
    public void closeSession() throws TException
-
 
282
    {
-
 
283
      send_closeSession();
-
 
284
      recv_closeSession();
-
 
285
    }
-
 
286
 
-
 
287
    public void send_closeSession() throws TException
-
 
288
    {
-
 
289
      oprot_.writeMessageBegin(new TMessage("closeSession", TMessageType.CALL, seqid_));
-
 
290
      closeSession_args args = new closeSession_args();
-
 
291
      args.write(oprot_);
-
 
292
      oprot_.writeMessageEnd();
-
 
293
      oprot_.getTransport().flush();
-
 
294
    }
-
 
295
 
-
 
296
    public void recv_closeSession() throws TException
-
 
297
    {
-
 
298
      TMessage msg = iprot_.readMessageBegin();
-
 
299
      if (msg.type == TMessageType.EXCEPTION) {
-
 
300
        TApplicationException x = TApplicationException.read(iprot_);
-
 
301
        iprot_.readMessageEnd();
-
 
302
        throw x;
-
 
303
      }
-
 
304
      closeSession_result result = new closeSession_result();
-
 
305
      result.read(iprot_);
-
 
306
      iprot_.readMessageEnd();
-
 
307
      return;
-
 
308
    }
258
    }
309
 
259
 
310
    public User createAnonymousUser(String jsessionId) throws UserContextException, TException
260
    public User createAnonymousUser(String jsessionId) throws UserContextException, TException
311
    {
261
    {
312
      send_createAnonymousUser(jsessionId);
262
      send_createAnonymousUser(jsessionId);
Line 2723... Line 2673...
2723
      iprot_.readMessageEnd();
2673
      iprot_.readMessageEnd();
2724
      return;
2674
      return;
2725
    }
2675
    }
2726
 
2676
 
2727
  }
2677
  }
2728
  public static class Processor implements TProcessor {
2678
  public static class Processor extends in.shop2020.generic.GenericService.Processor implements TProcessor {
2729
    private static final Logger LOGGER = LoggerFactory.getLogger(Processor.class.getName());
2679
    private static final Logger LOGGER = LoggerFactory.getLogger(Processor.class.getName());
2730
    public Processor(Iface iface)
2680
    public Processor(Iface iface)
2731
    {
2681
    {
-
 
2682
      super(iface);
2732
      iface_ = iface;
2683
      iface_ = iface;
2733
      processMap_.put("closeSession", new closeSession());
-
 
2734
      processMap_.put("createAnonymousUser", new createAnonymousUser());
2684
      processMap_.put("createAnonymousUser", new createAnonymousUser());
2735
      processMap_.put("getUserById", new getUserById());
2685
      processMap_.put("getUserById", new getUserById());
2736
      processMap_.put("getUserByEmail", new getUserByEmail());
2686
      processMap_.put("getUserByEmail", new getUserByEmail());
2737
      processMap_.put("getUserByMobileNumber", new getUserByMobileNumber());
2687
      processMap_.put("getUserByMobileNumber", new getUserByMobileNumber());
2738
      processMap_.put("createUser", new createUser());
2688
      processMap_.put("createUser", new createUser());
Line 2798... Line 2748...
2798
      processMap_.put("deleteItemFromMyResearch", new deleteItemFromMyResearch());
2748
      processMap_.put("deleteItemFromMyResearch", new deleteItemFromMyResearch());
2799
      processMap_.put("getBrowseHistoryItems", new getBrowseHistoryItems());
2749
      processMap_.put("getBrowseHistoryItems", new getBrowseHistoryItems());
2800
      processMap_.put("updateBrowseHistory", new updateBrowseHistory());
2750
      processMap_.put("updateBrowseHistory", new updateBrowseHistory());
2801
    }
2751
    }
2802
 
2752
 
2803
    protected static interface ProcessFunction {
-
 
2804
      public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException;
-
 
2805
    }
-
 
2806
 
-
 
2807
    private Iface iface_;
2753
    private Iface iface_;
2808
    protected final HashMap<String,ProcessFunction> processMap_ = new HashMap<String,ProcessFunction>();
-
 
2809
 
2754
 
2810
    public boolean process(TProtocol iprot, TProtocol oprot) throws TException
2755
    public boolean process(TProtocol iprot, TProtocol oprot) throws TException
2811
    {
2756
    {
2812
      TMessage msg = iprot.readMessageBegin();
2757
      TMessage msg = iprot.readMessageBegin();
2813
      ProcessFunction fn = processMap_.get(msg.name);
2758
      ProcessFunction fn = processMap_.get(msg.name);
Line 2823... Line 2768...
2823
      }
2768
      }
2824
      fn.process(msg.seqid, iprot, oprot);
2769
      fn.process(msg.seqid, iprot, oprot);
2825
      return true;
2770
      return true;
2826
    }
2771
    }
2827
 
2772
 
2828
    private class closeSession implements ProcessFunction {
-
 
2829
      public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
-
 
2830
      {
-
 
2831
        closeSession_args args = new closeSession_args();
-
 
2832
        args.read(iprot);
-
 
2833
        iprot.readMessageEnd();
-
 
2834
        closeSession_result result = new closeSession_result();
-
 
2835
        iface_.closeSession();
-
 
2836
        oprot.writeMessageBegin(new TMessage("closeSession", TMessageType.REPLY, seqid));
-
 
2837
        result.write(oprot);
-
 
2838
        oprot.writeMessageEnd();
-
 
2839
        oprot.getTransport().flush();
-
 
2840
      }
-
 
2841
 
-
 
2842
    }
-
 
2843
 
-
 
2844
    private class createAnonymousUser implements ProcessFunction {
2773
    private class createAnonymousUser implements ProcessFunction {
2845
      public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
2774
      public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
2846
      {
2775
      {
2847
        createAnonymousUser_args args = new createAnonymousUser_args();
2776
        createAnonymousUser_args args = new createAnonymousUser_args();
2848
        args.read(iprot);
2777
        args.read(iprot);
Line 4663... Line 4592...
4663
 
4592
 
4664
    }
4593
    }
4665
 
4594
 
4666
  }
4595
  }
4667
 
4596
 
4668
  public static class closeSession_args implements TBase<closeSession_args._Fields>, java.io.Serializable, Cloneable, Comparable<closeSession_args>   {
-
 
4669
    private static final TStruct STRUCT_DESC = new TStruct("closeSession_args");
-
 
4670
 
-
 
4671
 
-
 
4672
 
-
 
4673
    /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
-
 
4674
    public enum _Fields implements TFieldIdEnum {
-
 
4675
;
-
 
4676
 
-
 
4677
      private static final Map<Integer, _Fields> byId = new HashMap<Integer, _Fields>();
-
 
4678
      private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
-
 
4679
 
-
 
4680
      static {
-
 
4681
        for (_Fields field : EnumSet.allOf(_Fields.class)) {
-
 
4682
          byId.put((int)field._thriftId, field);
-
 
4683
          byName.put(field.getFieldName(), field);
-
 
4684
        }
-
 
4685
      }
-
 
4686
 
-
 
4687
      /**
-
 
4688
       * Find the _Fields constant that matches fieldId, or null if its not found.
-
 
4689
       */
-
 
4690
      public static _Fields findByThriftId(int fieldId) {
-
 
4691
        return byId.get(fieldId);
-
 
4692
      }
-
 
4693
 
-
 
4694
      /**
-
 
4695
       * Find the _Fields constant that matches fieldId, throwing an exception
-
 
4696
       * if it is not found.
-
 
4697
       */
-
 
4698
      public static _Fields findByThriftIdOrThrow(int fieldId) {
-
 
4699
        _Fields fields = findByThriftId(fieldId);
-
 
4700
        if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
-
 
4701
        return fields;
-
 
4702
      }
-
 
4703
 
-
 
4704
      /**
-
 
4705
       * Find the _Fields constant that matches name, or null if its not found.
-
 
4706
       */
-
 
4707
      public static _Fields findByName(String name) {
-
 
4708
        return byName.get(name);
-
 
4709
      }
-
 
4710
 
-
 
4711
      private final short _thriftId;
-
 
4712
      private final String _fieldName;
-
 
4713
 
-
 
4714
      _Fields(short thriftId, String fieldName) {
-
 
4715
        _thriftId = thriftId;
-
 
4716
        _fieldName = fieldName;
-
 
4717
      }
-
 
4718
 
-
 
4719
      public short getThriftFieldId() {
-
 
4720
        return _thriftId;
-
 
4721
      }
-
 
4722
 
-
 
4723
      public String getFieldName() {
-
 
4724
        return _fieldName;
-
 
4725
      }
-
 
4726
    }
-
 
4727
    public static final Map<_Fields, FieldMetaData> metaDataMap = Collections.unmodifiableMap(new EnumMap<_Fields, FieldMetaData>(_Fields.class) {{
-
 
4728
    }});
-
 
4729
 
-
 
4730
    static {
-
 
4731
      FieldMetaData.addStructMetaDataMap(closeSession_args.class, metaDataMap);
-
 
4732
    }
-
 
4733
 
-
 
4734
    public closeSession_args() {
-
 
4735
    }
-
 
4736
 
-
 
4737
    /**
-
 
4738
     * Performs a deep copy on <i>other</i>.
-
 
4739
     */
-
 
4740
    public closeSession_args(closeSession_args other) {
-
 
4741
    }
-
 
4742
 
-
 
4743
    public closeSession_args deepCopy() {
-
 
4744
      return new closeSession_args(this);
-
 
4745
    }
-
 
4746
 
-
 
4747
    @Deprecated
-
 
4748
    public closeSession_args clone() {
-
 
4749
      return new closeSession_args(this);
-
 
4750
    }
-
 
4751
 
-
 
4752
    public void setFieldValue(_Fields field, Object value) {
-
 
4753
      switch (field) {
-
 
4754
      }
-
 
4755
    }
-
 
4756
 
-
 
4757
    public void setFieldValue(int fieldID, Object value) {
-
 
4758
      setFieldValue(_Fields.findByThriftIdOrThrow(fieldID), value);
-
 
4759
    }
-
 
4760
 
-
 
4761
    public Object getFieldValue(_Fields field) {
-
 
4762
      switch (field) {
-
 
4763
      }
-
 
4764
      throw new IllegalStateException();
-
 
4765
    }
-
 
4766
 
-
 
4767
    public Object getFieldValue(int fieldId) {
-
 
4768
      return getFieldValue(_Fields.findByThriftIdOrThrow(fieldId));
-
 
4769
    }
-
 
4770
 
-
 
4771
    /** Returns true if field corresponding to fieldID is set (has been asigned a value) and false otherwise */
-
 
4772
    public boolean isSet(_Fields field) {
-
 
4773
      switch (field) {
-
 
4774
      }
-
 
4775
      throw new IllegalStateException();
-
 
4776
    }
-
 
4777
 
-
 
4778
    public boolean isSet(int fieldID) {
-
 
4779
      return isSet(_Fields.findByThriftIdOrThrow(fieldID));
-
 
4780
    }
-
 
4781
 
-
 
4782
    @Override
-
 
4783
    public boolean equals(Object that) {
-
 
4784
      if (that == null)
-
 
4785
        return false;
-
 
4786
      if (that instanceof closeSession_args)
-
 
4787
        return this.equals((closeSession_args)that);
-
 
4788
      return false;
-
 
4789
    }
-
 
4790
 
-
 
4791
    public boolean equals(closeSession_args that) {
-
 
4792
      if (that == null)
-
 
4793
        return false;
-
 
4794
 
-
 
4795
      return true;
-
 
4796
    }
-
 
4797
 
-
 
4798
    @Override
-
 
4799
    public int hashCode() {
-
 
4800
      return 0;
-
 
4801
    }
-
 
4802
 
-
 
4803
    public int compareTo(closeSession_args other) {
-
 
4804
      if (!getClass().equals(other.getClass())) {
-
 
4805
        return getClass().getName().compareTo(other.getClass().getName());
-
 
4806
      }
-
 
4807
 
-
 
4808
      int lastComparison = 0;
-
 
4809
      closeSession_args typedOther = (closeSession_args)other;
-
 
4810
 
-
 
4811
      return 0;
-
 
4812
    }
-
 
4813
 
-
 
4814
    public void read(TProtocol iprot) throws TException {
-
 
4815
      TField field;
-
 
4816
      iprot.readStructBegin();
-
 
4817
      while (true)
-
 
4818
      {
-
 
4819
        field = iprot.readFieldBegin();
-
 
4820
        if (field.type == TType.STOP) { 
-
 
4821
          break;
-
 
4822
        }
-
 
4823
        _Fields fieldId = _Fields.findByThriftId(field.id);
-
 
4824
        if (fieldId == null) {
-
 
4825
          TProtocolUtil.skip(iprot, field.type);
-
 
4826
        } else {
-
 
4827
          switch (fieldId) {
-
 
4828
          }
-
 
4829
          iprot.readFieldEnd();
-
 
4830
        }
-
 
4831
      }
-
 
4832
      iprot.readStructEnd();
-
 
4833
      validate();
-
 
4834
    }
-
 
4835
 
-
 
4836
    public void write(TProtocol oprot) throws TException {
-
 
4837
      validate();
-
 
4838
 
-
 
4839
      oprot.writeStructBegin(STRUCT_DESC);
-
 
4840
      oprot.writeFieldStop();
-
 
4841
      oprot.writeStructEnd();
-
 
4842
    }
-
 
4843
 
-
 
4844
    @Override
-
 
4845
    public String toString() {
-
 
4846
      StringBuilder sb = new StringBuilder("closeSession_args(");
-
 
4847
      boolean first = true;
-
 
4848
 
-
 
4849
      sb.append(")");
-
 
4850
      return sb.toString();
-
 
4851
    }
-
 
4852
 
-
 
4853
    public void validate() throws TException {
-
 
4854
      // check for required fields
-
 
4855
    }
-
 
4856
 
-
 
4857
  }
-
 
4858
 
-
 
4859
  public static class closeSession_result implements TBase<closeSession_result._Fields>, java.io.Serializable, Cloneable, Comparable<closeSession_result>   {
-
 
4860
    private static final TStruct STRUCT_DESC = new TStruct("closeSession_result");
-
 
4861
 
-
 
4862
 
-
 
4863
 
-
 
4864
    /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
-
 
4865
    public enum _Fields implements TFieldIdEnum {
-
 
4866
;
-
 
4867
 
-
 
4868
      private static final Map<Integer, _Fields> byId = new HashMap<Integer, _Fields>();
-
 
4869
      private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
-
 
4870
 
-
 
4871
      static {
-
 
4872
        for (_Fields field : EnumSet.allOf(_Fields.class)) {
-
 
4873
          byId.put((int)field._thriftId, field);
-
 
4874
          byName.put(field.getFieldName(), field);
-
 
4875
        }
-
 
4876
      }
-
 
4877
 
-
 
4878
      /**
-
 
4879
       * Find the _Fields constant that matches fieldId, or null if its not found.
-
 
4880
       */
-
 
4881
      public static _Fields findByThriftId(int fieldId) {
-
 
4882
        return byId.get(fieldId);
-
 
4883
      }
-
 
4884
 
-
 
4885
      /**
-
 
4886
       * Find the _Fields constant that matches fieldId, throwing an exception
-
 
4887
       * if it is not found.
-
 
4888
       */
-
 
4889
      public static _Fields findByThriftIdOrThrow(int fieldId) {
-
 
4890
        _Fields fields = findByThriftId(fieldId);
-
 
4891
        if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
-
 
4892
        return fields;
-
 
4893
      }
-
 
4894
 
-
 
4895
      /**
-
 
4896
       * Find the _Fields constant that matches name, or null if its not found.
-
 
4897
       */
-
 
4898
      public static _Fields findByName(String name) {
-
 
4899
        return byName.get(name);
-
 
4900
      }
-
 
4901
 
-
 
4902
      private final short _thriftId;
-
 
4903
      private final String _fieldName;
-
 
4904
 
-
 
4905
      _Fields(short thriftId, String fieldName) {
-
 
4906
        _thriftId = thriftId;
-
 
4907
        _fieldName = fieldName;
-
 
4908
      }
-
 
4909
 
-
 
4910
      public short getThriftFieldId() {
-
 
4911
        return _thriftId;
-
 
4912
      }
-
 
4913
 
-
 
4914
      public String getFieldName() {
-
 
4915
        return _fieldName;
-
 
4916
      }
-
 
4917
    }
-
 
4918
    public static final Map<_Fields, FieldMetaData> metaDataMap = Collections.unmodifiableMap(new EnumMap<_Fields, FieldMetaData>(_Fields.class) {{
-
 
4919
    }});
-
 
4920
 
-
 
4921
    static {
-
 
4922
      FieldMetaData.addStructMetaDataMap(closeSession_result.class, metaDataMap);
-
 
4923
    }
-
 
4924
 
-
 
4925
    public closeSession_result() {
-
 
4926
    }
-
 
4927
 
-
 
4928
    /**
-
 
4929
     * Performs a deep copy on <i>other</i>.
-
 
4930
     */
-
 
4931
    public closeSession_result(closeSession_result other) {
-
 
4932
    }
-
 
4933
 
-
 
4934
    public closeSession_result deepCopy() {
-
 
4935
      return new closeSession_result(this);
-
 
4936
    }
-
 
4937
 
-
 
4938
    @Deprecated
-
 
4939
    public closeSession_result clone() {
-
 
4940
      return new closeSession_result(this);
-
 
4941
    }
-
 
4942
 
-
 
4943
    public void setFieldValue(_Fields field, Object value) {
-
 
4944
      switch (field) {
-
 
4945
      }
-
 
4946
    }
-
 
4947
 
-
 
4948
    public void setFieldValue(int fieldID, Object value) {
-
 
4949
      setFieldValue(_Fields.findByThriftIdOrThrow(fieldID), value);
-
 
4950
    }
-
 
4951
 
-
 
4952
    public Object getFieldValue(_Fields field) {
-
 
4953
      switch (field) {
-
 
4954
      }
-
 
4955
      throw new IllegalStateException();
-
 
4956
    }
-
 
4957
 
-
 
4958
    public Object getFieldValue(int fieldId) {
-
 
4959
      return getFieldValue(_Fields.findByThriftIdOrThrow(fieldId));
-
 
4960
    }
-
 
4961
 
-
 
4962
    /** Returns true if field corresponding to fieldID is set (has been asigned a value) and false otherwise */
-
 
4963
    public boolean isSet(_Fields field) {
-
 
4964
      switch (field) {
-
 
4965
      }
-
 
4966
      throw new IllegalStateException();
-
 
4967
    }
-
 
4968
 
-
 
4969
    public boolean isSet(int fieldID) {
-
 
4970
      return isSet(_Fields.findByThriftIdOrThrow(fieldID));
-
 
4971
    }
-
 
4972
 
-
 
4973
    @Override
-
 
4974
    public boolean equals(Object that) {
-
 
4975
      if (that == null)
-
 
4976
        return false;
-
 
4977
      if (that instanceof closeSession_result)
-
 
4978
        return this.equals((closeSession_result)that);
-
 
4979
      return false;
-
 
4980
    }
-
 
4981
 
-
 
4982
    public boolean equals(closeSession_result that) {
-
 
4983
      if (that == null)
-
 
4984
        return false;
-
 
4985
 
-
 
4986
      return true;
-
 
4987
    }
-
 
4988
 
-
 
4989
    @Override
-
 
4990
    public int hashCode() {
-
 
4991
      return 0;
-
 
4992
    }
-
 
4993
 
-
 
4994
    public int compareTo(closeSession_result other) {
-
 
4995
      if (!getClass().equals(other.getClass())) {
-
 
4996
        return getClass().getName().compareTo(other.getClass().getName());
-
 
4997
      }
-
 
4998
 
-
 
4999
      int lastComparison = 0;
-
 
5000
      closeSession_result typedOther = (closeSession_result)other;
-
 
5001
 
-
 
5002
      return 0;
-
 
5003
    }
-
 
5004
 
-
 
5005
    public void read(TProtocol iprot) throws TException {
-
 
5006
      TField field;
-
 
5007
      iprot.readStructBegin();
-
 
5008
      while (true)
-
 
5009
      {
-
 
5010
        field = iprot.readFieldBegin();
-
 
5011
        if (field.type == TType.STOP) { 
-
 
5012
          break;
-
 
5013
        }
-
 
5014
        _Fields fieldId = _Fields.findByThriftId(field.id);
-
 
5015
        if (fieldId == null) {
-
 
5016
          TProtocolUtil.skip(iprot, field.type);
-
 
5017
        } else {
-
 
5018
          switch (fieldId) {
-
 
5019
          }
-
 
5020
          iprot.readFieldEnd();
-
 
5021
        }
-
 
5022
      }
-
 
5023
      iprot.readStructEnd();
-
 
5024
      validate();
-
 
5025
    }
-
 
5026
 
-
 
5027
    public void write(TProtocol oprot) throws TException {
-
 
5028
      oprot.writeStructBegin(STRUCT_DESC);
-
 
5029
 
-
 
5030
      oprot.writeFieldStop();
-
 
5031
      oprot.writeStructEnd();
-
 
5032
    }
-
 
5033
 
-
 
5034
    @Override
-
 
5035
    public String toString() {
-
 
5036
      StringBuilder sb = new StringBuilder("closeSession_result(");
-
 
5037
      boolean first = true;
-
 
5038
 
-
 
5039
      sb.append(")");
-
 
5040
      return sb.toString();
-
 
5041
    }
-
 
5042
 
-
 
5043
    public void validate() throws TException {
-
 
5044
      // check for required fields
-
 
5045
    }
-
 
5046
 
-
 
5047
  }
-
 
5048
 
-
 
5049
  public static class createAnonymousUser_args implements TBase<createAnonymousUser_args._Fields>, java.io.Serializable, Cloneable, Comparable<createAnonymousUser_args>   {
4597
  public static class createAnonymousUser_args implements TBase<createAnonymousUser_args._Fields>, java.io.Serializable, Cloneable, Comparable<createAnonymousUser_args>   {
5050
    private static final TStruct STRUCT_DESC = new TStruct("createAnonymousUser_args");
4598
    private static final TStruct STRUCT_DESC = new TStruct("createAnonymousUser_args");
5051
 
4599
 
5052
    private static final TField JSESSION_ID_FIELD_DESC = new TField("jsessionId", TType.STRING, (short)1);
4600
    private static final TField JSESSION_ID_FIELD_DESC = new TField("jsessionId", TType.STRING, (short)1);
5053
 
4601