| Line 31... |
Line 31... |
| 31 |
private static final org.apache.thrift.protocol.TField STATE_FIELD_DESC = new org.apache.thrift.protocol.TField("state", org.apache.thrift.protocol.TType.STRING, (short)6);
|
31 |
private static final org.apache.thrift.protocol.TField STATE_FIELD_DESC = new org.apache.thrift.protocol.TField("state", org.apache.thrift.protocol.TType.STRING, (short)6);
|
| 32 |
private static final org.apache.thrift.protocol.TField PAN_FIELD_DESC = new org.apache.thrift.protocol.TField("pan", org.apache.thrift.protocol.TType.STRING, (short)7);
|
32 |
private static final org.apache.thrift.protocol.TField PAN_FIELD_DESC = new org.apache.thrift.protocol.TField("pan", org.apache.thrift.protocol.TType.STRING, (short)7);
|
| 33 |
private static final org.apache.thrift.protocol.TField REGISTRATION_DATE_FIELD_DESC = new org.apache.thrift.protocol.TField("registrationDate", org.apache.thrift.protocol.TType.I64, (short)8);
|
33 |
private static final org.apache.thrift.protocol.TField REGISTRATION_DATE_FIELD_DESC = new org.apache.thrift.protocol.TField("registrationDate", org.apache.thrift.protocol.TType.I64, (short)8);
|
| 34 |
private static final org.apache.thrift.protocol.TField REGISTRATION_STATUS_FIELD_DESC = new org.apache.thrift.protocol.TField("registrationStatus", org.apache.thrift.protocol.TType.BOOL, (short)9);
|
34 |
private static final org.apache.thrift.protocol.TField REGISTRATION_STATUS_FIELD_DESC = new org.apache.thrift.protocol.TField("registrationStatus", org.apache.thrift.protocol.TType.BOOL, (short)9);
|
| 35 |
private static final org.apache.thrift.protocol.TField VALIDATED_TILL_FIELD_DESC = new org.apache.thrift.protocol.TField("validatedTill", org.apache.thrift.protocol.TType.I64, (short)10);
|
35 |
private static final org.apache.thrift.protocol.TField VALIDATED_TILL_FIELD_DESC = new org.apache.thrift.protocol.TField("validatedTill", org.apache.thrift.protocol.TType.I64, (short)10);
|
| - |
|
36 |
private static final org.apache.thrift.protocol.TField CREATED_FIELD_DESC = new org.apache.thrift.protocol.TField("created", org.apache.thrift.protocol.TType.I64, (short)11);
|
| 36 |
|
37 |
|
| 37 |
private long counterId; // required
|
38 |
private long counterId; // required
|
| 38 |
private String tinNumber; // required
|
39 |
private String tinNumber; // required
|
| 39 |
private String cstNumber; // required
|
40 |
private String cstNumber; // required
|
| 40 |
private String dealerName; // required
|
41 |
private String dealerName; // required
|
| Line 42... |
Line 43... |
| 42 |
private String state; // required
|
43 |
private String state; // required
|
| 43 |
private String pan; // required
|
44 |
private String pan; // required
|
| 44 |
private long registrationDate; // required
|
45 |
private long registrationDate; // required
|
| 45 |
private boolean registrationStatus; // required
|
46 |
private boolean registrationStatus; // required
|
| 46 |
private long validatedTill; // required
|
47 |
private long validatedTill; // required
|
| - |
|
48 |
private long created; // required
|
| 47 |
|
49 |
|
| 48 |
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
|
50 |
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
|
| 49 |
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
|
51 |
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
|
| 50 |
COUNTER_ID((short)1, "counterId"),
|
52 |
COUNTER_ID((short)1, "counterId"),
|
| 51 |
TIN_NUMBER((short)2, "tinNumber"),
|
53 |
TIN_NUMBER((short)2, "tinNumber"),
|
| Line 54... |
Line 56... |
| 54 |
DEALER_ADDRESS((short)5, "dealerAddress"),
|
56 |
DEALER_ADDRESS((short)5, "dealerAddress"),
|
| 55 |
STATE((short)6, "state"),
|
57 |
STATE((short)6, "state"),
|
| 56 |
PAN((short)7, "pan"),
|
58 |
PAN((short)7, "pan"),
|
| 57 |
REGISTRATION_DATE((short)8, "registrationDate"),
|
59 |
REGISTRATION_DATE((short)8, "registrationDate"),
|
| 58 |
REGISTRATION_STATUS((short)9, "registrationStatus"),
|
60 |
REGISTRATION_STATUS((short)9, "registrationStatus"),
|
| 59 |
VALIDATED_TILL((short)10, "validatedTill");
|
61 |
VALIDATED_TILL((short)10, "validatedTill"),
|
| - |
|
62 |
CREATED((short)11, "created");
|
| 60 |
|
63 |
|
| 61 |
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
|
64 |
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
|
| 62 |
|
65 |
|
| 63 |
static {
|
66 |
static {
|
| 64 |
for (_Fields field : EnumSet.allOf(_Fields.class)) {
|
67 |
for (_Fields field : EnumSet.allOf(_Fields.class)) {
|
| Line 89... |
Line 92... |
| 89 |
return REGISTRATION_DATE;
|
92 |
return REGISTRATION_DATE;
|
| 90 |
case 9: // REGISTRATION_STATUS
|
93 |
case 9: // REGISTRATION_STATUS
|
| 91 |
return REGISTRATION_STATUS;
|
94 |
return REGISTRATION_STATUS;
|
| 92 |
case 10: // VALIDATED_TILL
|
95 |
case 10: // VALIDATED_TILL
|
| 93 |
return VALIDATED_TILL;
|
96 |
return VALIDATED_TILL;
|
| - |
|
97 |
case 11: // CREATED
|
| - |
|
98 |
return CREATED;
|
| 94 |
default:
|
99 |
default:
|
| 95 |
return null;
|
100 |
return null;
|
| 96 |
}
|
101 |
}
|
| 97 |
}
|
102 |
}
|
| 98 |
|
103 |
|
| Line 133... |
Line 138... |
| 133 |
// isset id assignments
|
138 |
// isset id assignments
|
| 134 |
private static final int __COUNTERID_ISSET_ID = 0;
|
139 |
private static final int __COUNTERID_ISSET_ID = 0;
|
| 135 |
private static final int __REGISTRATIONDATE_ISSET_ID = 1;
|
140 |
private static final int __REGISTRATIONDATE_ISSET_ID = 1;
|
| 136 |
private static final int __REGISTRATIONSTATUS_ISSET_ID = 2;
|
141 |
private static final int __REGISTRATIONSTATUS_ISSET_ID = 2;
|
| 137 |
private static final int __VALIDATEDTILL_ISSET_ID = 3;
|
142 |
private static final int __VALIDATEDTILL_ISSET_ID = 3;
|
| - |
|
143 |
private static final int __CREATED_ISSET_ID = 4;
|
| 138 |
private BitSet __isset_bit_vector = new BitSet(4);
|
144 |
private BitSet __isset_bit_vector = new BitSet(5);
|
| 139 |
|
145 |
|
| 140 |
public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
|
146 |
public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
|
| 141 |
static {
|
147 |
static {
|
| 142 |
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
|
148 |
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
|
| 143 |
tmpMap.put(_Fields.COUNTER_ID, new org.apache.thrift.meta_data.FieldMetaData("counterId", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
149 |
tmpMap.put(_Fields.COUNTER_ID, new org.apache.thrift.meta_data.FieldMetaData("counterId", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
| Line 158... |
Line 164... |
| 158 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
|
164 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
|
| 159 |
tmpMap.put(_Fields.REGISTRATION_STATUS, new org.apache.thrift.meta_data.FieldMetaData("registrationStatus", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
165 |
tmpMap.put(_Fields.REGISTRATION_STATUS, new org.apache.thrift.meta_data.FieldMetaData("registrationStatus", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
| 160 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)));
|
166 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)));
|
| 161 |
tmpMap.put(_Fields.VALIDATED_TILL, new org.apache.thrift.meta_data.FieldMetaData("validatedTill", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
167 |
tmpMap.put(_Fields.VALIDATED_TILL, new org.apache.thrift.meta_data.FieldMetaData("validatedTill", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
| 162 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
|
168 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
|
| - |
|
169 |
tmpMap.put(_Fields.CREATED, new org.apache.thrift.meta_data.FieldMetaData("created", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
| - |
|
170 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
|
| 163 |
metaDataMap = Collections.unmodifiableMap(tmpMap);
|
171 |
metaDataMap = Collections.unmodifiableMap(tmpMap);
|
| 164 |
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(CounterOnlineInfo.class, metaDataMap);
|
172 |
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(CounterOnlineInfo.class, metaDataMap);
|
| 165 |
}
|
173 |
}
|
| 166 |
|
174 |
|
| 167 |
public CounterOnlineInfo() {
|
175 |
public CounterOnlineInfo() {
|
| Line 175... |
Line 183... |
| 175 |
String dealerAddress,
|
183 |
String dealerAddress,
|
| 176 |
String state,
|
184 |
String state,
|
| 177 |
String pan,
|
185 |
String pan,
|
| 178 |
long registrationDate,
|
186 |
long registrationDate,
|
| 179 |
boolean registrationStatus,
|
187 |
boolean registrationStatus,
|
| 180 |
long validatedTill)
|
188 |
long validatedTill,
|
| - |
|
189 |
long created)
|
| 181 |
{
|
190 |
{
|
| 182 |
this();
|
191 |
this();
|
| 183 |
this.counterId = counterId;
|
192 |
this.counterId = counterId;
|
| 184 |
setCounterIdIsSet(true);
|
193 |
setCounterIdIsSet(true);
|
| 185 |
this.tinNumber = tinNumber;
|
194 |
this.tinNumber = tinNumber;
|
| Line 192... |
Line 201... |
| 192 |
setRegistrationDateIsSet(true);
|
201 |
setRegistrationDateIsSet(true);
|
| 193 |
this.registrationStatus = registrationStatus;
|
202 |
this.registrationStatus = registrationStatus;
|
| 194 |
setRegistrationStatusIsSet(true);
|
203 |
setRegistrationStatusIsSet(true);
|
| 195 |
this.validatedTill = validatedTill;
|
204 |
this.validatedTill = validatedTill;
|
| 196 |
setValidatedTillIsSet(true);
|
205 |
setValidatedTillIsSet(true);
|
| - |
|
206 |
this.created = created;
|
| - |
|
207 |
setCreatedIsSet(true);
|
| 197 |
}
|
208 |
}
|
| 198 |
|
209 |
|
| 199 |
/**
|
210 |
/**
|
| 200 |
* Performs a deep copy on <i>other</i>.
|
211 |
* Performs a deep copy on <i>other</i>.
|
| 201 |
*/
|
212 |
*/
|
| Line 222... |
Line 233... |
| 222 |
this.pan = other.pan;
|
233 |
this.pan = other.pan;
|
| 223 |
}
|
234 |
}
|
| 224 |
this.registrationDate = other.registrationDate;
|
235 |
this.registrationDate = other.registrationDate;
|
| 225 |
this.registrationStatus = other.registrationStatus;
|
236 |
this.registrationStatus = other.registrationStatus;
|
| 226 |
this.validatedTill = other.validatedTill;
|
237 |
this.validatedTill = other.validatedTill;
|
| - |
|
238 |
this.created = other.created;
|
| 227 |
}
|
239 |
}
|
| 228 |
|
240 |
|
| 229 |
public CounterOnlineInfo deepCopy() {
|
241 |
public CounterOnlineInfo deepCopy() {
|
| 230 |
return new CounterOnlineInfo(this);
|
242 |
return new CounterOnlineInfo(this);
|
| 231 |
}
|
243 |
}
|
| Line 244... |
Line 256... |
| 244 |
this.registrationDate = 0;
|
256 |
this.registrationDate = 0;
|
| 245 |
setRegistrationStatusIsSet(false);
|
257 |
setRegistrationStatusIsSet(false);
|
| 246 |
this.registrationStatus = false;
|
258 |
this.registrationStatus = false;
|
| 247 |
setValidatedTillIsSet(false);
|
259 |
setValidatedTillIsSet(false);
|
| 248 |
this.validatedTill = 0;
|
260 |
this.validatedTill = 0;
|
| - |
|
261 |
setCreatedIsSet(false);
|
| - |
|
262 |
this.created = 0;
|
| 249 |
}
|
263 |
}
|
| 250 |
|
264 |
|
| 251 |
public long getCounterId() {
|
265 |
public long getCounterId() {
|
| 252 |
return this.counterId;
|
266 |
return this.counterId;
|
| 253 |
}
|
267 |
}
|
| Line 472... |
Line 486... |
| 472 |
|
486 |
|
| 473 |
public void setValidatedTillIsSet(boolean value) {
|
487 |
public void setValidatedTillIsSet(boolean value) {
|
| 474 |
__isset_bit_vector.set(__VALIDATEDTILL_ISSET_ID, value);
|
488 |
__isset_bit_vector.set(__VALIDATEDTILL_ISSET_ID, value);
|
| 475 |
}
|
489 |
}
|
| 476 |
|
490 |
|
| - |
|
491 |
public long getCreated() {
|
| - |
|
492 |
return this.created;
|
| - |
|
493 |
}
|
| - |
|
494 |
|
| - |
|
495 |
public void setCreated(long created) {
|
| - |
|
496 |
this.created = created;
|
| - |
|
497 |
setCreatedIsSet(true);
|
| - |
|
498 |
}
|
| - |
|
499 |
|
| - |
|
500 |
public void unsetCreated() {
|
| - |
|
501 |
__isset_bit_vector.clear(__CREATED_ISSET_ID);
|
| - |
|
502 |
}
|
| - |
|
503 |
|
| - |
|
504 |
/** Returns true if field created is set (has been assigned a value) and false otherwise */
|
| - |
|
505 |
public boolean isSetCreated() {
|
| - |
|
506 |
return __isset_bit_vector.get(__CREATED_ISSET_ID);
|
| - |
|
507 |
}
|
| - |
|
508 |
|
| - |
|
509 |
public void setCreatedIsSet(boolean value) {
|
| - |
|
510 |
__isset_bit_vector.set(__CREATED_ISSET_ID, value);
|
| - |
|
511 |
}
|
| - |
|
512 |
|
| 477 |
public void setFieldValue(_Fields field, Object value) {
|
513 |
public void setFieldValue(_Fields field, Object value) {
|
| 478 |
switch (field) {
|
514 |
switch (field) {
|
| 479 |
case COUNTER_ID:
|
515 |
case COUNTER_ID:
|
| 480 |
if (value == null) {
|
516 |
if (value == null) {
|
| 481 |
unsetCounterId();
|
517 |
unsetCounterId();
|
| Line 554... |
Line 590... |
| 554 |
} else {
|
590 |
} else {
|
| 555 |
setValidatedTill((Long)value);
|
591 |
setValidatedTill((Long)value);
|
| 556 |
}
|
592 |
}
|
| 557 |
break;
|
593 |
break;
|
| 558 |
|
594 |
|
| - |
|
595 |
case CREATED:
|
| - |
|
596 |
if (value == null) {
|
| - |
|
597 |
unsetCreated();
|
| - |
|
598 |
} else {
|
| - |
|
599 |
setCreated((Long)value);
|
| - |
|
600 |
}
|
| - |
|
601 |
break;
|
| - |
|
602 |
|
| 559 |
}
|
603 |
}
|
| 560 |
}
|
604 |
}
|
| 561 |
|
605 |
|
| 562 |
public Object getFieldValue(_Fields field) {
|
606 |
public Object getFieldValue(_Fields field) {
|
| 563 |
switch (field) {
|
607 |
switch (field) {
|
| Line 589... |
Line 633... |
| 589 |
return Boolean.valueOf(isRegistrationStatus());
|
633 |
return Boolean.valueOf(isRegistrationStatus());
|
| 590 |
|
634 |
|
| 591 |
case VALIDATED_TILL:
|
635 |
case VALIDATED_TILL:
|
| 592 |
return Long.valueOf(getValidatedTill());
|
636 |
return Long.valueOf(getValidatedTill());
|
| 593 |
|
637 |
|
| - |
|
638 |
case CREATED:
|
| - |
|
639 |
return Long.valueOf(getCreated());
|
| - |
|
640 |
|
| 594 |
}
|
641 |
}
|
| 595 |
throw new IllegalStateException();
|
642 |
throw new IllegalStateException();
|
| 596 |
}
|
643 |
}
|
| 597 |
|
644 |
|
| 598 |
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
|
645 |
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
|
| Line 620... |
Line 667... |
| 620 |
return isSetRegistrationDate();
|
667 |
return isSetRegistrationDate();
|
| 621 |
case REGISTRATION_STATUS:
|
668 |
case REGISTRATION_STATUS:
|
| 622 |
return isSetRegistrationStatus();
|
669 |
return isSetRegistrationStatus();
|
| 623 |
case VALIDATED_TILL:
|
670 |
case VALIDATED_TILL:
|
| 624 |
return isSetValidatedTill();
|
671 |
return isSetValidatedTill();
|
| - |
|
672 |
case CREATED:
|
| - |
|
673 |
return isSetCreated();
|
| 625 |
}
|
674 |
}
|
| 626 |
throw new IllegalStateException();
|
675 |
throw new IllegalStateException();
|
| 627 |
}
|
676 |
}
|
| 628 |
|
677 |
|
| 629 |
@Override
|
678 |
@Override
|
| Line 727... |
Line 776... |
| 727 |
return false;
|
776 |
return false;
|
| 728 |
if (this.validatedTill != that.validatedTill)
|
777 |
if (this.validatedTill != that.validatedTill)
|
| 729 |
return false;
|
778 |
return false;
|
| 730 |
}
|
779 |
}
|
| 731 |
|
780 |
|
| - |
|
781 |
boolean this_present_created = true;
|
| - |
|
782 |
boolean that_present_created = true;
|
| - |
|
783 |
if (this_present_created || that_present_created) {
|
| - |
|
784 |
if (!(this_present_created && that_present_created))
|
| - |
|
785 |
return false;
|
| - |
|
786 |
if (this.created != that.created)
|
| - |
|
787 |
return false;
|
| - |
|
788 |
}
|
| - |
|
789 |
|
| 732 |
return true;
|
790 |
return true;
|
| 733 |
}
|
791 |
}
|
| 734 |
|
792 |
|
| 735 |
@Override
|
793 |
@Override
|
| 736 |
public int hashCode() {
|
794 |
public int hashCode() {
|
| Line 843... |
Line 901... |
| 843 |
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.validatedTill, typedOther.validatedTill);
|
901 |
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.validatedTill, typedOther.validatedTill);
|
| 844 |
if (lastComparison != 0) {
|
902 |
if (lastComparison != 0) {
|
| 845 |
return lastComparison;
|
903 |
return lastComparison;
|
| 846 |
}
|
904 |
}
|
| 847 |
}
|
905 |
}
|
| - |
|
906 |
lastComparison = Boolean.valueOf(isSetCreated()).compareTo(typedOther.isSetCreated());
|
| - |
|
907 |
if (lastComparison != 0) {
|
| - |
|
908 |
return lastComparison;
|
| - |
|
909 |
}
|
| - |
|
910 |
if (isSetCreated()) {
|
| - |
|
911 |
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.created, typedOther.created);
|
| - |
|
912 |
if (lastComparison != 0) {
|
| - |
|
913 |
return lastComparison;
|
| - |
|
914 |
}
|
| - |
|
915 |
}
|
| 848 |
return 0;
|
916 |
return 0;
|
| 849 |
}
|
917 |
}
|
| 850 |
|
918 |
|
| 851 |
public _Fields fieldForId(int fieldId) {
|
919 |
public _Fields fieldForId(int fieldId) {
|
| 852 |
return _Fields.findByThriftId(fieldId);
|
920 |
return _Fields.findByThriftId(fieldId);
|
| Line 934... |
Line 1002... |
| 934 |
setValidatedTillIsSet(true);
|
1002 |
setValidatedTillIsSet(true);
|
| 935 |
} else {
|
1003 |
} else {
|
| 936 |
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
|
1004 |
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
|
| 937 |
}
|
1005 |
}
|
| 938 |
break;
|
1006 |
break;
|
| - |
|
1007 |
case 11: // CREATED
|
| - |
|
1008 |
if (field.type == org.apache.thrift.protocol.TType.I64) {
|
| - |
|
1009 |
this.created = iprot.readI64();
|
| - |
|
1010 |
setCreatedIsSet(true);
|
| - |
|
1011 |
} else {
|
| - |
|
1012 |
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
|
| - |
|
1013 |
}
|
| - |
|
1014 |
break;
|
| 939 |
default:
|
1015 |
default:
|
| 940 |
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
|
1016 |
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
|
| 941 |
}
|
1017 |
}
|
| 942 |
iprot.readFieldEnd();
|
1018 |
iprot.readFieldEnd();
|
| 943 |
}
|
1019 |
}
|
| Line 989... |
Line 1065... |
| 989 |
oprot.writeBool(this.registrationStatus);
|
1065 |
oprot.writeBool(this.registrationStatus);
|
| 990 |
oprot.writeFieldEnd();
|
1066 |
oprot.writeFieldEnd();
|
| 991 |
oprot.writeFieldBegin(VALIDATED_TILL_FIELD_DESC);
|
1067 |
oprot.writeFieldBegin(VALIDATED_TILL_FIELD_DESC);
|
| 992 |
oprot.writeI64(this.validatedTill);
|
1068 |
oprot.writeI64(this.validatedTill);
|
| 993 |
oprot.writeFieldEnd();
|
1069 |
oprot.writeFieldEnd();
|
| - |
|
1070 |
oprot.writeFieldBegin(CREATED_FIELD_DESC);
|
| - |
|
1071 |
oprot.writeI64(this.created);
|
| - |
|
1072 |
oprot.writeFieldEnd();
|
| 994 |
oprot.writeFieldStop();
|
1073 |
oprot.writeFieldStop();
|
| 995 |
oprot.writeStructEnd();
|
1074 |
oprot.writeStructEnd();
|
| 996 |
}
|
1075 |
}
|
| 997 |
|
1076 |
|
| 998 |
@Override
|
1077 |
@Override
|
| Line 1061... |
Line 1140... |
| 1061 |
first = false;
|
1140 |
first = false;
|
| 1062 |
if (!first) sb.append(", ");
|
1141 |
if (!first) sb.append(", ");
|
| 1063 |
sb.append("validatedTill:");
|
1142 |
sb.append("validatedTill:");
|
| 1064 |
sb.append(this.validatedTill);
|
1143 |
sb.append(this.validatedTill);
|
| 1065 |
first = false;
|
1144 |
first = false;
|
| - |
|
1145 |
if (!first) sb.append(", ");
|
| - |
|
1146 |
sb.append("created:");
|
| - |
|
1147 |
sb.append(this.created);
|
| - |
|
1148 |
first = false;
|
| 1066 |
sb.append(")");
|
1149 |
sb.append(")");
|
| 1067 |
return sb.toString();
|
1150 |
return sb.toString();
|
| 1068 |
}
|
1151 |
}
|
| 1069 |
|
1152 |
|
| 1070 |
public void validate() throws org.apache.thrift.TException {
|
1153 |
public void validate() throws org.apache.thrift.TException {
|