blob: 536ac241269d62051d3bdd224cd40839dbad8d9b (
plain) (
blame)
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
|
package com.juick;
import org.apache.commons.lang3.builder.ToStringBuilder;
public class Reaction {
public static final int LIKE = 1;
private final int id;
private String description;
private int count;
public Reaction(int id) {
this.id = id;
}
@Override
public String toString() {
return new ToStringBuilder(this)
.append("id", getId())
.append("description", description)
.append("count", count)
.build();
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public int getId() {
return id;
}
}
|