forked from Infosys/Discourse-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBadgePosts.java
More file actions
865 lines (665 loc) · 20.2 KB
/
Copy pathBadgePosts.java
File metadata and controls
865 lines (665 loc) · 20.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
/*
* Copyright 2021 Infosys Ltd.
* Use of this source code is governed by GNU General Public License version 2
* that can be found in the LICENSE file or at
* https://opensource.org/licenses/GPL-2.0
*/
package com.infy.domain;
import org.hibernate.annotations.Type;
import javax.persistence.*;
import java.io.Serializable;
import java.time.Instant;
/**
* A BadgePosts.
*/
@Entity
@Table(name = "badge_posts")
public class BadgePosts extends AbstractAuditingEntity implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "sequenceGenerator")
@SequenceGenerator(name = "sequenceGenerator")
private Long id;
@Column(name = "user_id")
private String userId;
@Column(name = "topic_id")
private Long topicId;
@Column(name = "post_number")
private Long postNumber;
@Lob
@Type(type = "org.hibernate.type.TextType")
@Column(name = "raw")
private String raw;
@Column(name = "cooked")
private String cooked;
@Column(name = "reply_to_post_number")
private Long replyToPostNumber;
@Column(name = "reply_count")
private Integer replyCount;
@Column(name = "quote_count")
private Integer quoteCount;
@Column(name = "deleted_at")
private Instant deletedAt;
@Column(name = "off_topic_count")
private Integer offTopicCount;
@Column(name = "like_count")
private Integer likeCount;
@Column(name = "incoming_link_count")
private Integer incomingLinkCount;
@Column(name = "bookmark_count")
private Integer bookmarkCount;
@Column(name = "score")
private Double score;
@Column(name = "reads")
private Integer reads;
@Column(name = "post_type")
private Integer postType;
@Column(name = "sort_order")
private Integer sortOrder;
@Column(name = "last_editor_id")
private String lastEditorId;
@Column(name = "hidden")
private Boolean hidden;
@Column(name = "hidden_reason_id")
private Long hiddenReasonId;
@Column(name = "notify_moderators_count")
private Integer notifyModeratorsCount;
@Column(name = "spam_count")
private Integer spamCount;
@Column(name = "illegal_count")
private Integer illegalCount;
@Column(name = "inappropriate_count")
private Integer inappropriateCount;
@Column(name = "last_version_at")
private Instant lastVersionAt;
@Column(name = "user_deleted")
private Boolean userDeleted;
@Column(name = "reply_to_user_id")
private String replyToUserId;
@Column(name = "percent_rank")
private Double percentRank;
@Column(name = "notify_user_count")
private Integer notifyUserCount;
@Column(name = "like_score")
private Integer likeScore;
@Column(name = "deleted_by_id")
private String deletedById;
@Column(name = "edit_reason")
private String editReason;
@Column(name = "word_count")
private Integer wordCount;
@Column(name = "version")
private Integer version;
@Column(name = "cook_method")
private Integer cookMethod;
@Column(name = "wiki")
private Boolean wiki;
@Column(name = "baked_at")
private Instant bakedAt;
@Column(name = "baked_version")
private Integer bakedVersion;
@Column(name = "hidden_at")
private Instant hiddenAt;
@Column(name = "self_edits")
private Integer selfEdits;
@Column(name = "reply_quoted")
private Boolean replyQuoted;
@Column(name = "via_email")
private Boolean viaEmail;
@Column(name = "raw_email")
private String rawEmail;
@Column(name = "public_version")
private Integer publicVersion;
@Column(name = "action_code")
private String actionCode;
@Column(name = "locked_by_id")
private String lockedById;
@Column(name = "image_upload_id")
private Long imageUploadId;
// jhipster-needle-entity-add-field - JHipster will add fields here
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getUserId() {
return userId;
}
public BadgePosts userId(String userId) {
this.userId = userId;
return this;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Long getTopicId() {
return topicId;
}
public BadgePosts topicId(Long topicId) {
this.topicId = topicId;
return this;
}
public void setTopicId(Long topicId) {
this.topicId = topicId;
}
public Long getPostNumber() {
return postNumber;
}
public BadgePosts postNumber(Long postNumber) {
this.postNumber = postNumber;
return this;
}
public void setPostNumber(Long postNumber) {
this.postNumber = postNumber;
}
public String getRaw() {
return raw;
}
public BadgePosts raw(String raw) {
this.raw = raw;
return this;
}
public void setRaw(String raw) {
this.raw = raw;
}
public String getCooked() {
return cooked;
}
public BadgePosts cooked(String cooked) {
this.cooked = cooked;
return this;
}
public void setCooked(String cooked) {
this.cooked = cooked;
}
public Long getReplyToPostNumber() {
return replyToPostNumber;
}
public BadgePosts replyToPostNumber(Long replyToPostNumber) {
this.replyToPostNumber = replyToPostNumber;
return this;
}
public void setReplyToPostNumber(Long replyToPostNumber) {
this.replyToPostNumber = replyToPostNumber;
}
public Integer getReplyCount() {
return replyCount;
}
public BadgePosts replyCount(Integer replyCount) {
this.replyCount = replyCount;
return this;
}
public void setReplyCount(Integer replyCount) {
this.replyCount = replyCount;
}
public Integer getQuoteCount() {
return quoteCount;
}
public BadgePosts quoteCount(Integer quoteCount) {
this.quoteCount = quoteCount;
return this;
}
public void setQuoteCount(Integer quoteCount) {
this.quoteCount = quoteCount;
}
public Instant getDeletedAt() {
return deletedAt;
}
public BadgePosts deletedAt(Instant deletedAt) {
this.deletedAt = deletedAt;
return this;
}
public void setDeletedAt(Instant deletedAt) {
this.deletedAt = deletedAt;
}
public Integer getOffTopicCount() {
return offTopicCount;
}
public BadgePosts offTopicCount(Integer offTopicCount) {
this.offTopicCount = offTopicCount;
return this;
}
public void setOffTopicCount(Integer offTopicCount) {
this.offTopicCount = offTopicCount;
}
public Integer getLikeCount() {
return likeCount;
}
public BadgePosts likeCount(Integer likeCount) {
this.likeCount = likeCount;
return this;
}
public void setLikeCount(Integer likeCount) {
this.likeCount = likeCount;
}
public Integer getIncomingLinkCount() {
return incomingLinkCount;
}
public BadgePosts incomingLinkCount(Integer incomingLinkCount) {
this.incomingLinkCount = incomingLinkCount;
return this;
}
public void setIncomingLinkCount(Integer incomingLinkCount) {
this.incomingLinkCount = incomingLinkCount;
}
public Integer getBookmarkCount() {
return bookmarkCount;
}
public BadgePosts bookmarkCount(Integer bookmarkCount) {
this.bookmarkCount = bookmarkCount;
return this;
}
public void setBookmarkCount(Integer bookmarkCount) {
this.bookmarkCount = bookmarkCount;
}
public Double getScore() {
return score;
}
public BadgePosts score(Double score) {
this.score = score;
return this;
}
public void setScore(Double score) {
this.score = score;
}
public Integer getReads() {
return reads;
}
public BadgePosts reads(Integer reads) {
this.reads = reads;
return this;
}
public void setReads(Integer reads) {
this.reads = reads;
}
public Integer getPostType() {
return postType;
}
public BadgePosts postType(Integer postType) {
this.postType = postType;
return this;
}
public void setPostType(Integer postType) {
this.postType = postType;
}
public Integer getSortOrder() {
return sortOrder;
}
public BadgePosts sortOrder(Integer sortOrder) {
this.sortOrder = sortOrder;
return this;
}
public void setSortOrder(Integer sortOrder) {
this.sortOrder = sortOrder;
}
public String getLastEditorId() {
return lastEditorId;
}
public BadgePosts lastEditorId(String lastEditorId) {
this.lastEditorId = lastEditorId;
return this;
}
public void setLastEditorId(String lastEditorId) {
this.lastEditorId = lastEditorId;
}
public Boolean isHidden() {
return hidden;
}
public BadgePosts hidden(Boolean hidden) {
this.hidden = hidden;
return this;
}
public void setHidden(Boolean hidden) {
this.hidden = hidden;
}
public Long getHiddenReasonId() {
return hiddenReasonId;
}
public BadgePosts hiddenReasonId(Long hiddenReasonId) {
this.hiddenReasonId = hiddenReasonId;
return this;
}
public void setHiddenReasonId(Long hiddenReasonId) {
this.hiddenReasonId = hiddenReasonId;
}
public Integer getNotifyModeratorsCount() {
return notifyModeratorsCount;
}
public BadgePosts notifyModeratorsCount(Integer notifyModeratorsCount) {
this.notifyModeratorsCount = notifyModeratorsCount;
return this;
}
public void setNotifyModeratorsCount(Integer notifyModeratorsCount) {
this.notifyModeratorsCount = notifyModeratorsCount;
}
public Integer getSpamCount() {
return spamCount;
}
public BadgePosts spamCount(Integer spamCount) {
this.spamCount = spamCount;
return this;
}
public void setSpamCount(Integer spamCount) {
this.spamCount = spamCount;
}
public Integer getIllegalCount() {
return illegalCount;
}
public BadgePosts illegalCount(Integer illegalCount) {
this.illegalCount = illegalCount;
return this;
}
public void setIllegalCount(Integer illegalCount) {
this.illegalCount = illegalCount;
}
public Integer getInappropriateCount() {
return inappropriateCount;
}
public BadgePosts inappropriateCount(Integer inappropriateCount) {
this.inappropriateCount = inappropriateCount;
return this;
}
public void setInappropriateCount(Integer inappropriateCount) {
this.inappropriateCount = inappropriateCount;
}
public Instant getLastVersionAt() {
return lastVersionAt;
}
public BadgePosts lastVersionAt(Instant lastVersionAt) {
this.lastVersionAt = lastVersionAt;
return this;
}
public void setLastVersionAt(Instant lastVersionAt) {
this.lastVersionAt = lastVersionAt;
}
public Boolean isUserDeleted() {
return userDeleted;
}
public BadgePosts userDeleted(Boolean userDeleted) {
this.userDeleted = userDeleted;
return this;
}
public void setUserDeleted(Boolean userDeleted) {
this.userDeleted = userDeleted;
}
public String getReplyToUserId() {
return replyToUserId;
}
public BadgePosts replyToUserId(String replyToUserId) {
this.replyToUserId = replyToUserId;
return this;
}
public void setReplyToUserId(String replyToUserId) {
this.replyToUserId = replyToUserId;
}
public Double getPercentRank() {
return percentRank;
}
public BadgePosts percentRank(Double percentRank) {
this.percentRank = percentRank;
return this;
}
public void setPercentRank(Double percentRank) {
this.percentRank = percentRank;
}
public Integer getNotifyUserCount() {
return notifyUserCount;
}
public BadgePosts notifyUserCount(Integer notifyUserCount) {
this.notifyUserCount = notifyUserCount;
return this;
}
public void setNotifyUserCount(Integer notifyUserCount) {
this.notifyUserCount = notifyUserCount;
}
public Integer getLikeScore() {
return likeScore;
}
public BadgePosts likeScore(Integer likeScore) {
this.likeScore = likeScore;
return this;
}
public void setLikeScore(Integer likeScore) {
this.likeScore = likeScore;
}
public String getDeletedById() {
return deletedById;
}
public BadgePosts deletedById(String deletedById) {
this.deletedById = deletedById;
return this;
}
public void setDeletedById(String deletedById) {
this.deletedById = deletedById;
}
public String getEditReason() {
return editReason;
}
public BadgePosts editReason(String editReason) {
this.editReason = editReason;
return this;
}
public void setEditReason(String editReason) {
this.editReason = editReason;
}
public Integer getWordCount() {
return wordCount;
}
public BadgePosts wordCount(Integer wordCount) {
this.wordCount = wordCount;
return this;
}
public void setWordCount(Integer wordCount) {
this.wordCount = wordCount;
}
public Integer getVersion() {
return version;
}
public BadgePosts version(Integer version) {
this.version = version;
return this;
}
public void setVersion(Integer version) {
this.version = version;
}
public Integer getCookMethod() {
return cookMethod;
}
public BadgePosts cookMethod(Integer cookMethod) {
this.cookMethod = cookMethod;
return this;
}
public void setCookMethod(Integer cookMethod) {
this.cookMethod = cookMethod;
}
public Boolean isWiki() {
return wiki;
}
public BadgePosts wiki(Boolean wiki) {
this.wiki = wiki;
return this;
}
public void setWiki(Boolean wiki) {
this.wiki = wiki;
}
public Instant getBakedAt() {
return bakedAt;
}
public BadgePosts bakedAt(Instant bakedAt) {
this.bakedAt = bakedAt;
return this;
}
public void setBakedAt(Instant bakedAt) {
this.bakedAt = bakedAt;
}
public Integer getBakedVersion() {
return bakedVersion;
}
public BadgePosts bakedVersion(Integer bakedVersion) {
this.bakedVersion = bakedVersion;
return this;
}
public void setBakedVersion(Integer bakedVersion) {
this.bakedVersion = bakedVersion;
}
public Instant getHiddenAt() {
return hiddenAt;
}
public BadgePosts hiddenAt(Instant hiddenAt) {
this.hiddenAt = hiddenAt;
return this;
}
public void setHiddenAt(Instant hiddenAt) {
this.hiddenAt = hiddenAt;
}
public Integer getSelfEdits() {
return selfEdits;
}
public BadgePosts selfEdits(Integer selfEdits) {
this.selfEdits = selfEdits;
return this;
}
public void setSelfEdits(Integer selfEdits) {
this.selfEdits = selfEdits;
}
public Boolean isReplyQuoted() {
return replyQuoted;
}
public BadgePosts replyQuoted(Boolean replyQuoted) {
this.replyQuoted = replyQuoted;
return this;
}
public void setReplyQuoted(Boolean replyQuoted) {
this.replyQuoted = replyQuoted;
}
public Boolean isViaEmail() {
return viaEmail;
}
public BadgePosts viaEmail(Boolean viaEmail) {
this.viaEmail = viaEmail;
return this;
}
public void setViaEmail(Boolean viaEmail) {
this.viaEmail = viaEmail;
}
public String getRawEmail() {
return rawEmail;
}
public BadgePosts rawEmail(String rawEmail) {
this.rawEmail = rawEmail;
return this;
}
public void setRawEmail(String rawEmail) {
this.rawEmail = rawEmail;
}
public Integer getPublicVersion() {
return publicVersion;
}
public BadgePosts publicVersion(Integer publicVersion) {
this.publicVersion = publicVersion;
return this;
}
public void setPublicVersion(Integer publicVersion) {
this.publicVersion = publicVersion;
}
public String getActionCode() {
return actionCode;
}
public BadgePosts actionCode(String actionCode) {
this.actionCode = actionCode;
return this;
}
public void setActionCode(String actionCode) {
this.actionCode = actionCode;
}
public String getLockedById() {
return lockedById;
}
public BadgePosts lockedById(String lockedById) {
this.lockedById = lockedById;
return this;
}
public void setLockedById(String lockedById) {
this.lockedById = lockedById;
}
public Long getImageUploadId() {
return imageUploadId;
}
public BadgePosts imageUploadId(Long imageUploadId) {
this.imageUploadId = imageUploadId;
return this;
}
public void setImageUploadId(Long imageUploadId) {
this.imageUploadId = imageUploadId;
}
// jhipster-needle-entity-add-getters-setters - JHipster will add getters and setters here
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof BadgePosts)) {
return false;
}
return id != null && id.equals(((BadgePosts) o).id);
}
@Override
public int hashCode() {
return 31;
}
// prettier-ignore
@Override
public String toString() {
return "BadgePosts{" +
"id=" + getId() +
", userId='" + getUserId() + "'" +
", topicId=" + getTopicId() +
", postNumber=" + getPostNumber() +
", raw='" + getRaw() + "'" +
", cooked='" + getCooked() + "'" +
", replyToPostNumber=" + getReplyToPostNumber() +
", replyCount=" + getReplyCount() +
", quoteCount=" + getQuoteCount() +
", deletedAt='" + getDeletedAt() + "'" +
", offTopicCount=" + getOffTopicCount() +
", likeCount=" + getLikeCount() +
", incomingLinkCount=" + getIncomingLinkCount() +
", bookmarkCount=" + getBookmarkCount() +
", score=" + getScore() +
", reads=" + getReads() +
", postType=" + getPostType() +
", sortOrder=" + getSortOrder() +
", lastEditorId='" + getLastEditorId() + "'" +
", hidden='" + isHidden() + "'" +
", hiddenReasonId=" + getHiddenReasonId() +
", notifyModeratorsCount=" + getNotifyModeratorsCount() +
", spamCount=" + getSpamCount() +
", illegalCount=" + getIllegalCount() +
", inappropriateCount=" + getInappropriateCount() +
", lastVersionAt='" + getLastVersionAt() + "'" +
", userDeleted='" + isUserDeleted() + "'" +
", replyToUserId='" + getReplyToUserId() + "'" +
", percentRank=" + getPercentRank() +
", notifyUserCount=" + getNotifyUserCount() +
", likeScore=" + getLikeScore() +
", deletedById='" + getDeletedById() + "'" +
", editReason='" + getEditReason() + "'" +
", wordCount=" + getWordCount() +
", version=" + getVersion() +
", cookMethod=" + getCookMethod() +
", wiki='" + isWiki() + "'" +
", bakedAt='" + getBakedAt() + "'" +
", bakedVersion=" + getBakedVersion() +
", hiddenAt='" + getHiddenAt() + "'" +
", selfEdits=" + getSelfEdits() +
", replyQuoted='" + isReplyQuoted() + "'" +
", viaEmail='" + isViaEmail() + "'" +
", rawEmail='" + getRawEmail() + "'" +
", publicVersion=" + getPublicVersion() +
", actionCode='" + getActionCode() + "'" +
", lockedById='" + getLockedById() + "'" +
", imageUploadId=" + getImageUploadId() +
"}";
}
}