| Line 30... |
Line 30... |
| 30 |
private static final TField DESCRIPTION_FIELD_DESC = new TField("description", TType.STRING, (short)2);
|
30 |
private static final TField DESCRIPTION_FIELD_DESC = new TField("description", TType.STRING, (short)2);
|
| 31 |
private static final TField CREATION_TIMESTAMP_FIELD_DESC = new TField("creationTimestamp", TType.I64, (short)3);
|
31 |
private static final TField CREATION_TIMESTAMP_FIELD_DESC = new TField("creationTimestamp", TType.I64, (short)3);
|
| 32 |
private static final TField TYPE_FIELD_DESC = new TField("type", TType.I32, (short)4);
|
32 |
private static final TField TYPE_FIELD_DESC = new TField("type", TType.I32, (short)4);
|
| 33 |
private static final TField CUSTOMER_ID_FIELD_DESC = new TField("customerId", TType.I64, (short)5);
|
33 |
private static final TField CUSTOMER_ID_FIELD_DESC = new TField("customerId", TType.I64, (short)5);
|
| 34 |
private static final TField CREATOR_ID_FIELD_DESC = new TField("creatorId", TType.I64, (short)6);
|
34 |
private static final TField CREATOR_ID_FIELD_DESC = new TField("creatorId", TType.I64, (short)6);
|
| - |
|
35 |
private static final TField EMAIL_ID_FIELD_DESC = new TField("emailId", TType.I64, (short)7);
|
| 35 |
private static final TField TICKET_ID_FIELD_DESC = new TField("ticketId", TType.I64, (short)7);
|
36 |
private static final TField TICKET_ID_FIELD_DESC = new TField("ticketId", TType.I64, (short)8);
|
| 36 |
private static final TField TICKET_PRIORITY_FIELD_DESC = new TField("ticketPriority", TType.I32, (short)8);
|
37 |
private static final TField TICKET_PRIORITY_FIELD_DESC = new TField("ticketPriority", TType.I32, (short)9);
|
| 37 |
private static final TField TICKET_ASSIGNEE_ID_FIELD_DESC = new TField("ticketAssigneeId", TType.I64, (short)9);
|
38 |
private static final TField TICKET_ASSIGNEE_ID_FIELD_DESC = new TField("ticketAssigneeId", TType.I64, (short)10);
|
| 38 |
private static final TField TICKET_STATUS_FIELD_DESC = new TField("ticketStatus", TType.I32, (short)10);
|
39 |
private static final TField TICKET_STATUS_FIELD_DESC = new TField("ticketStatus", TType.I32, (short)11);
|
| 39 |
private static final TField TICKET_CATEGORY_FIELD_DESC = new TField("ticketCategory", TType.I32, (short)11);
|
40 |
private static final TField TICKET_CATEGORY_FIELD_DESC = new TField("ticketCategory", TType.I32, (short)12);
|
| 40 |
private static final TField TICKET_DESCRIPTION_FIELD_DESC = new TField("ticketDescription", TType.STRING, (short)12);
|
41 |
private static final TField TICKET_DESCRIPTION_FIELD_DESC = new TField("ticketDescription", TType.STRING, (short)13);
|
| 41 |
|
42 |
|
| 42 |
private long id;
|
43 |
private long id;
|
| 43 |
private String description;
|
44 |
private String description;
|
| 44 |
private long creationTimestamp;
|
45 |
private long creationTimestamp;
|
| 45 |
private ActivityType type;
|
46 |
private ActivityType type;
|
| 46 |
private long customerId;
|
47 |
private long customerId;
|
| 47 |
private long creatorId;
|
48 |
private long creatorId;
|
| - |
|
49 |
private long emailId;
|
| 48 |
private long ticketId;
|
50 |
private long ticketId;
|
| 49 |
private TicketPriority ticketPriority;
|
51 |
private TicketPriority ticketPriority;
|
| 50 |
private long ticketAssigneeId;
|
52 |
private long ticketAssigneeId;
|
| 51 |
private TicketStatus ticketStatus;
|
53 |
private TicketStatus ticketStatus;
|
| 52 |
private TicketCategory ticketCategory;
|
54 |
private TicketCategory ticketCategory;
|
| Line 62... |
Line 64... |
| 62 |
* @see ActivityType
|
64 |
* @see ActivityType
|
| 63 |
*/
|
65 |
*/
|
| 64 |
TYPE((short)4, "type"),
|
66 |
TYPE((short)4, "type"),
|
| 65 |
CUSTOMER_ID((short)5, "customerId"),
|
67 |
CUSTOMER_ID((short)5, "customerId"),
|
| 66 |
CREATOR_ID((short)6, "creatorId"),
|
68 |
CREATOR_ID((short)6, "creatorId"),
|
| - |
|
69 |
EMAIL_ID((short)7, "emailId"),
|
| 67 |
TICKET_ID((short)7, "ticketId"),
|
70 |
TICKET_ID((short)8, "ticketId"),
|
| 68 |
/**
|
71 |
/**
|
| 69 |
*
|
72 |
*
|
| 70 |
* @see TicketPriority
|
73 |
* @see TicketPriority
|
| 71 |
*/
|
74 |
*/
|
| 72 |
TICKET_PRIORITY((short)8, "ticketPriority"),
|
75 |
TICKET_PRIORITY((short)9, "ticketPriority"),
|
| 73 |
TICKET_ASSIGNEE_ID((short)9, "ticketAssigneeId"),
|
76 |
TICKET_ASSIGNEE_ID((short)10, "ticketAssigneeId"),
|
| 74 |
/**
|
77 |
/**
|
| 75 |
*
|
78 |
*
|
| 76 |
* @see TicketStatus
|
79 |
* @see TicketStatus
|
| 77 |
*/
|
80 |
*/
|
| 78 |
TICKET_STATUS((short)10, "ticketStatus"),
|
81 |
TICKET_STATUS((short)11, "ticketStatus"),
|
| 79 |
/**
|
82 |
/**
|
| 80 |
*
|
83 |
*
|
| 81 |
* @see TicketCategory
|
84 |
* @see TicketCategory
|
| 82 |
*/
|
85 |
*/
|
| 83 |
TICKET_CATEGORY((short)11, "ticketCategory"),
|
86 |
TICKET_CATEGORY((short)12, "ticketCategory"),
|
| 84 |
TICKET_DESCRIPTION((short)12, "ticketDescription");
|
87 |
TICKET_DESCRIPTION((short)13, "ticketDescription");
|
| 85 |
|
88 |
|
| 86 |
private static final Map<Integer, _Fields> byId = new HashMap<Integer, _Fields>();
|
89 |
private static final Map<Integer, _Fields> byId = new HashMap<Integer, _Fields>();
|
| 87 |
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
|
90 |
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
|
| 88 |
|
91 |
|
| 89 |
static {
|
92 |
static {
|
| Line 137... |
Line 140... |
| 137 |
// isset id assignments
|
140 |
// isset id assignments
|
| 138 |
private static final int __ID_ISSET_ID = 0;
|
141 |
private static final int __ID_ISSET_ID = 0;
|
| 139 |
private static final int __CREATIONTIMESTAMP_ISSET_ID = 1;
|
142 |
private static final int __CREATIONTIMESTAMP_ISSET_ID = 1;
|
| 140 |
private static final int __CUSTOMERID_ISSET_ID = 2;
|
143 |
private static final int __CUSTOMERID_ISSET_ID = 2;
|
| 141 |
private static final int __CREATORID_ISSET_ID = 3;
|
144 |
private static final int __CREATORID_ISSET_ID = 3;
|
| - |
|
145 |
private static final int __EMAILID_ISSET_ID = 4;
|
| 142 |
private static final int __TICKETID_ISSET_ID = 4;
|
146 |
private static final int __TICKETID_ISSET_ID = 5;
|
| 143 |
private static final int __TICKETASSIGNEEID_ISSET_ID = 5;
|
147 |
private static final int __TICKETASSIGNEEID_ISSET_ID = 6;
|
| 144 |
private BitSet __isset_bit_vector = new BitSet(6);
|
148 |
private BitSet __isset_bit_vector = new BitSet(7);
|
| 145 |
|
149 |
|
| 146 |
public static final Map<_Fields, FieldMetaData> metaDataMap = Collections.unmodifiableMap(new EnumMap<_Fields, FieldMetaData>(_Fields.class) {{
|
150 |
public static final Map<_Fields, FieldMetaData> metaDataMap = Collections.unmodifiableMap(new EnumMap<_Fields, FieldMetaData>(_Fields.class) {{
|
| 147 |
put(_Fields.ID, new FieldMetaData("id", TFieldRequirementType.DEFAULT,
|
151 |
put(_Fields.ID, new FieldMetaData("id", TFieldRequirementType.DEFAULT,
|
| 148 |
new FieldValueMetaData(TType.I64)));
|
152 |
new FieldValueMetaData(TType.I64)));
|
| 149 |
put(_Fields.DESCRIPTION, new FieldMetaData("description", TFieldRequirementType.OPTIONAL,
|
153 |
put(_Fields.DESCRIPTION, new FieldMetaData("description", TFieldRequirementType.OPTIONAL,
|
| Line 154... |
Line 158... |
| 154 |
new EnumMetaData(TType.ENUM, ActivityType.class)));
|
158 |
new EnumMetaData(TType.ENUM, ActivityType.class)));
|
| 155 |
put(_Fields.CUSTOMER_ID, new FieldMetaData("customerId", TFieldRequirementType.DEFAULT,
|
159 |
put(_Fields.CUSTOMER_ID, new FieldMetaData("customerId", TFieldRequirementType.DEFAULT,
|
| 156 |
new FieldValueMetaData(TType.I64)));
|
160 |
new FieldValueMetaData(TType.I64)));
|
| 157 |
put(_Fields.CREATOR_ID, new FieldMetaData("creatorId", TFieldRequirementType.DEFAULT,
|
161 |
put(_Fields.CREATOR_ID, new FieldMetaData("creatorId", TFieldRequirementType.DEFAULT,
|
| 158 |
new FieldValueMetaData(TType.I64)));
|
162 |
new FieldValueMetaData(TType.I64)));
|
| - |
|
163 |
put(_Fields.EMAIL_ID, new FieldMetaData("emailId", TFieldRequirementType.OPTIONAL,
|
| - |
|
164 |
new FieldValueMetaData(TType.I64)));
|
| 159 |
put(_Fields.TICKET_ID, new FieldMetaData("ticketId", TFieldRequirementType.OPTIONAL,
|
165 |
put(_Fields.TICKET_ID, new FieldMetaData("ticketId", TFieldRequirementType.OPTIONAL,
|
| 160 |
new FieldValueMetaData(TType.I64)));
|
166 |
new FieldValueMetaData(TType.I64)));
|
| 161 |
put(_Fields.TICKET_PRIORITY, new FieldMetaData("ticketPriority", TFieldRequirementType.OPTIONAL,
|
167 |
put(_Fields.TICKET_PRIORITY, new FieldMetaData("ticketPriority", TFieldRequirementType.OPTIONAL,
|
| 162 |
new EnumMetaData(TType.ENUM, TicketPriority.class)));
|
168 |
new EnumMetaData(TType.ENUM, TicketPriority.class)));
|
| 163 |
put(_Fields.TICKET_ASSIGNEE_ID, new FieldMetaData("ticketAssigneeId", TFieldRequirementType.OPTIONAL,
|
169 |
put(_Fields.TICKET_ASSIGNEE_ID, new FieldMetaData("ticketAssigneeId", TFieldRequirementType.OPTIONAL,
|
| Line 210... |
Line 216... |
| 210 |
if (other.isSetType()) {
|
216 |
if (other.isSetType()) {
|
| 211 |
this.type = other.type;
|
217 |
this.type = other.type;
|
| 212 |
}
|
218 |
}
|
| 213 |
this.customerId = other.customerId;
|
219 |
this.customerId = other.customerId;
|
| 214 |
this.creatorId = other.creatorId;
|
220 |
this.creatorId = other.creatorId;
|
| - |
|
221 |
this.emailId = other.emailId;
|
| 215 |
this.ticketId = other.ticketId;
|
222 |
this.ticketId = other.ticketId;
|
| 216 |
if (other.isSetTicketPriority()) {
|
223 |
if (other.isSetTicketPriority()) {
|
| 217 |
this.ticketPriority = other.ticketPriority;
|
224 |
this.ticketPriority = other.ticketPriority;
|
| 218 |
}
|
225 |
}
|
| 219 |
this.ticketAssigneeId = other.ticketAssigneeId;
|
226 |
this.ticketAssigneeId = other.ticketAssigneeId;
|
| Line 383... |
Line 390... |
| 383 |
|
390 |
|
| 384 |
public void setCreatorIdIsSet(boolean value) {
|
391 |
public void setCreatorIdIsSet(boolean value) {
|
| 385 |
__isset_bit_vector.set(__CREATORID_ISSET_ID, value);
|
392 |
__isset_bit_vector.set(__CREATORID_ISSET_ID, value);
|
| 386 |
}
|
393 |
}
|
| 387 |
|
394 |
|
| - |
|
395 |
public long getEmailId() {
|
| - |
|
396 |
return this.emailId;
|
| - |
|
397 |
}
|
| - |
|
398 |
|
| - |
|
399 |
public Activity setEmailId(long emailId) {
|
| - |
|
400 |
this.emailId = emailId;
|
| - |
|
401 |
setEmailIdIsSet(true);
|
| - |
|
402 |
return this;
|
| - |
|
403 |
}
|
| - |
|
404 |
|
| - |
|
405 |
public void unsetEmailId() {
|
| - |
|
406 |
__isset_bit_vector.clear(__EMAILID_ISSET_ID);
|
| - |
|
407 |
}
|
| - |
|
408 |
|
| - |
|
409 |
/** Returns true if field emailId is set (has been asigned a value) and false otherwise */
|
| - |
|
410 |
public boolean isSetEmailId() {
|
| - |
|
411 |
return __isset_bit_vector.get(__EMAILID_ISSET_ID);
|
| - |
|
412 |
}
|
| - |
|
413 |
|
| - |
|
414 |
public void setEmailIdIsSet(boolean value) {
|
| - |
|
415 |
__isset_bit_vector.set(__EMAILID_ISSET_ID, value);
|
| - |
|
416 |
}
|
| - |
|
417 |
|
| 388 |
public long getTicketId() {
|
418 |
public long getTicketId() {
|
| 389 |
return this.ticketId;
|
419 |
return this.ticketId;
|
| 390 |
}
|
420 |
}
|
| 391 |
|
421 |
|
| 392 |
public Activity setTicketId(long ticketId) {
|
422 |
public Activity setTicketId(long ticketId) {
|
| Line 599... |
Line 629... |
| 599 |
} else {
|
629 |
} else {
|
| 600 |
setCreatorId((Long)value);
|
630 |
setCreatorId((Long)value);
|
| 601 |
}
|
631 |
}
|
| 602 |
break;
|
632 |
break;
|
| 603 |
|
633 |
|
| - |
|
634 |
case EMAIL_ID:
|
| - |
|
635 |
if (value == null) {
|
| - |
|
636 |
unsetEmailId();
|
| - |
|
637 |
} else {
|
| - |
|
638 |
setEmailId((Long)value);
|
| - |
|
639 |
}
|
| - |
|
640 |
break;
|
| - |
|
641 |
|
| 604 |
case TICKET_ID:
|
642 |
case TICKET_ID:
|
| 605 |
if (value == null) {
|
643 |
if (value == null) {
|
| 606 |
unsetTicketId();
|
644 |
unsetTicketId();
|
| 607 |
} else {
|
645 |
} else {
|
| 608 |
setTicketId((Long)value);
|
646 |
setTicketId((Long)value);
|
| Line 674... |
Line 712... |
| 674 |
return new Long(getCustomerId());
|
712 |
return new Long(getCustomerId());
|
| 675 |
|
713 |
|
| 676 |
case CREATOR_ID:
|
714 |
case CREATOR_ID:
|
| 677 |
return new Long(getCreatorId());
|
715 |
return new Long(getCreatorId());
|
| 678 |
|
716 |
|
| - |
|
717 |
case EMAIL_ID:
|
| - |
|
718 |
return new Long(getEmailId());
|
| - |
|
719 |
|
| 679 |
case TICKET_ID:
|
720 |
case TICKET_ID:
|
| 680 |
return new Long(getTicketId());
|
721 |
return new Long(getTicketId());
|
| 681 |
|
722 |
|
| 682 |
case TICKET_PRIORITY:
|
723 |
case TICKET_PRIORITY:
|
| 683 |
return getTicketPriority();
|
724 |
return getTicketPriority();
|
| Line 715... |
Line 756... |
| 715 |
return isSetType();
|
756 |
return isSetType();
|
| 716 |
case CUSTOMER_ID:
|
757 |
case CUSTOMER_ID:
|
| 717 |
return isSetCustomerId();
|
758 |
return isSetCustomerId();
|
| 718 |
case CREATOR_ID:
|
759 |
case CREATOR_ID:
|
| 719 |
return isSetCreatorId();
|
760 |
return isSetCreatorId();
|
| - |
|
761 |
case EMAIL_ID:
|
| - |
|
762 |
return isSetEmailId();
|
| 720 |
case TICKET_ID:
|
763 |
case TICKET_ID:
|
| 721 |
return isSetTicketId();
|
764 |
return isSetTicketId();
|
| 722 |
case TICKET_PRIORITY:
|
765 |
case TICKET_PRIORITY:
|
| 723 |
return isSetTicketPriority();
|
766 |
return isSetTicketPriority();
|
| 724 |
case TICKET_ASSIGNEE_ID:
|
767 |
case TICKET_ASSIGNEE_ID:
|
| Line 802... |
Line 845... |
| 802 |
return false;
|
845 |
return false;
|
| 803 |
if (this.creatorId != that.creatorId)
|
846 |
if (this.creatorId != that.creatorId)
|
| 804 |
return false;
|
847 |
return false;
|
| 805 |
}
|
848 |
}
|
| 806 |
|
849 |
|
| - |
|
850 |
boolean this_present_emailId = true && this.isSetEmailId();
|
| - |
|
851 |
boolean that_present_emailId = true && that.isSetEmailId();
|
| - |
|
852 |
if (this_present_emailId || that_present_emailId) {
|
| - |
|
853 |
if (!(this_present_emailId && that_present_emailId))
|
| - |
|
854 |
return false;
|
| - |
|
855 |
if (this.emailId != that.emailId)
|
| - |
|
856 |
return false;
|
| - |
|
857 |
}
|
| - |
|
858 |
|
| 807 |
boolean this_present_ticketId = true && this.isSetTicketId();
|
859 |
boolean this_present_ticketId = true && this.isSetTicketId();
|
| 808 |
boolean that_present_ticketId = true && that.isSetTicketId();
|
860 |
boolean that_present_ticketId = true && that.isSetTicketId();
|
| 809 |
if (this_present_ticketId || that_present_ticketId) {
|
861 |
if (this_present_ticketId || that_present_ticketId) {
|
| 810 |
if (!(this_present_ticketId && that_present_ticketId))
|
862 |
if (!(this_present_ticketId && that_present_ticketId))
|
| 811 |
return false;
|
863 |
return false;
|
| Line 920... |
Line 972... |
| 920 |
}
|
972 |
}
|
| 921 |
lastComparison = TBaseHelper.compareTo(creatorId, typedOther.creatorId);
|
973 |
lastComparison = TBaseHelper.compareTo(creatorId, typedOther.creatorId);
|
| 922 |
if (lastComparison != 0) {
|
974 |
if (lastComparison != 0) {
|
| 923 |
return lastComparison;
|
975 |
return lastComparison;
|
| 924 |
}
|
976 |
}
|
| - |
|
977 |
lastComparison = Boolean.valueOf(isSetEmailId()).compareTo(isSetEmailId());
|
| - |
|
978 |
if (lastComparison != 0) {
|
| - |
|
979 |
return lastComparison;
|
| - |
|
980 |
}
|
| - |
|
981 |
lastComparison = TBaseHelper.compareTo(emailId, typedOther.emailId);
|
| - |
|
982 |
if (lastComparison != 0) {
|
| - |
|
983 |
return lastComparison;
|
| - |
|
984 |
}
|
| 925 |
lastComparison = Boolean.valueOf(isSetTicketId()).compareTo(isSetTicketId());
|
985 |
lastComparison = Boolean.valueOf(isSetTicketId()).compareTo(isSetTicketId());
|
| 926 |
if (lastComparison != 0) {
|
986 |
if (lastComparison != 0) {
|
| 927 |
return lastComparison;
|
987 |
return lastComparison;
|
| 928 |
}
|
988 |
}
|
| 929 |
lastComparison = TBaseHelper.compareTo(ticketId, typedOther.ticketId);
|
989 |
lastComparison = TBaseHelper.compareTo(ticketId, typedOther.ticketId);
|
| Line 1031... |
Line 1091... |
| 1031 |
setCreatorIdIsSet(true);
|
1091 |
setCreatorIdIsSet(true);
|
| 1032 |
} else {
|
1092 |
} else {
|
| 1033 |
TProtocolUtil.skip(iprot, field.type);
|
1093 |
TProtocolUtil.skip(iprot, field.type);
|
| 1034 |
}
|
1094 |
}
|
| 1035 |
break;
|
1095 |
break;
|
| - |
|
1096 |
case EMAIL_ID:
|
| - |
|
1097 |
if (field.type == TType.I64) {
|
| - |
|
1098 |
this.emailId = iprot.readI64();
|
| - |
|
1099 |
setEmailIdIsSet(true);
|
| - |
|
1100 |
} else {
|
| - |
|
1101 |
TProtocolUtil.skip(iprot, field.type);
|
| - |
|
1102 |
}
|
| - |
|
1103 |
break;
|
| 1036 |
case TICKET_ID:
|
1104 |
case TICKET_ID:
|
| 1037 |
if (field.type == TType.I64) {
|
1105 |
if (field.type == TType.I64) {
|
| 1038 |
this.ticketId = iprot.readI64();
|
1106 |
this.ticketId = iprot.readI64();
|
| 1039 |
setTicketIdIsSet(true);
|
1107 |
setTicketIdIsSet(true);
|
| 1040 |
} else {
|
1108 |
} else {
|
| Line 1111... |
Line 1179... |
| 1111 |
oprot.writeI64(this.customerId);
|
1179 |
oprot.writeI64(this.customerId);
|
| 1112 |
oprot.writeFieldEnd();
|
1180 |
oprot.writeFieldEnd();
|
| 1113 |
oprot.writeFieldBegin(CREATOR_ID_FIELD_DESC);
|
1181 |
oprot.writeFieldBegin(CREATOR_ID_FIELD_DESC);
|
| 1114 |
oprot.writeI64(this.creatorId);
|
1182 |
oprot.writeI64(this.creatorId);
|
| 1115 |
oprot.writeFieldEnd();
|
1183 |
oprot.writeFieldEnd();
|
| - |
|
1184 |
if (isSetEmailId()) {
|
| - |
|
1185 |
oprot.writeFieldBegin(EMAIL_ID_FIELD_DESC);
|
| - |
|
1186 |
oprot.writeI64(this.emailId);
|
| - |
|
1187 |
oprot.writeFieldEnd();
|
| - |
|
1188 |
}
|
| 1116 |
if (isSetTicketId()) {
|
1189 |
if (isSetTicketId()) {
|
| 1117 |
oprot.writeFieldBegin(TICKET_ID_FIELD_DESC);
|
1190 |
oprot.writeFieldBegin(TICKET_ID_FIELD_DESC);
|
| 1118 |
oprot.writeI64(this.ticketId);
|
1191 |
oprot.writeI64(this.ticketId);
|
| 1119 |
oprot.writeFieldEnd();
|
1192 |
oprot.writeFieldEnd();
|
| 1120 |
}
|
1193 |
}
|
| Line 1199... |
Line 1272... |
| 1199 |
first = false;
|
1272 |
first = false;
|
| 1200 |
if (!first) sb.append(", ");
|
1273 |
if (!first) sb.append(", ");
|
| 1201 |
sb.append("creatorId:");
|
1274 |
sb.append("creatorId:");
|
| 1202 |
sb.append(this.creatorId);
|
1275 |
sb.append(this.creatorId);
|
| 1203 |
first = false;
|
1276 |
first = false;
|
| - |
|
1277 |
if (isSetEmailId()) {
|
| - |
|
1278 |
if (!first) sb.append(", ");
|
| - |
|
1279 |
sb.append("emailId:");
|
| - |
|
1280 |
sb.append(this.emailId);
|
| - |
|
1281 |
first = false;
|
| - |
|
1282 |
}
|
| 1204 |
if (isSetTicketId()) {
|
1283 |
if (isSetTicketId()) {
|
| 1205 |
if (!first) sb.append(", ");
|
1284 |
if (!first) sb.append(", ");
|
| 1206 |
sb.append("ticketId:");
|
1285 |
sb.append("ticketId:");
|
| 1207 |
sb.append(this.ticketId);
|
1286 |
sb.append(this.ticketId);
|
| 1208 |
first = false;
|
1287 |
first = false;
|