-
Notifications
You must be signed in to change notification settings - Fork 3
/
Hprivates.java
70 lines (65 loc) · 1.7 KB
/
Hprivates.java
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
package com.model;
public class Hprivates {
private String privateUserId;
private int showBasic;
private int showPreference;
private int showTopic;
private int showQuestion;
private int showAnswer;
private int showFollow;
private int showActivity;
public String getPrivateUserId() {
return privateUserId;
}
public void setPrivateUserId(String privateUserId) {
this.privateUserId = privateUserId;
}
public int getShowBasic() {
return showBasic;
}
public void setShowBasic(int showBasic) {
this.showBasic = showBasic;
}
public int getShowPreference() {
return showPreference;
}
public void setShowPreference(int showPreference) {
this.showPreference = showPreference;
}
public int getShowTopic() {
return showTopic;
}
public void setShowTopic(int showTopic) {
this.showTopic = showTopic;
}
public int getShowQuestion() {
return showQuestion;
}
public void setShowQuestion(int showQuestion) {
this.showQuestion = showQuestion;
}
public int getShowAnswer() {
return showAnswer;
}
public void setShowAnswer(int showAnswer) {
this.showAnswer = showAnswer;
}
public int getShowFollow() {
return showFollow;
}
public void setShowFollow(int showFollow) {
this.showFollow = showFollow;
}
public int getShowActivity() {
return showActivity;
}
public void setShowActivity(int showActivity) {
this.showActivity = showActivity;
}
@Override
public String toString() {
return "Hprivates [privateUserId=" + privateUserId + ", showBasic=" + showBasic + ", showPreference="
+ showPreference + ", showTopic=" + showTopic + ", showQuestion=" + showQuestion + ", showAnswer="
+ showAnswer + ", showFollow=" + showFollow + ", showActivity=" + showActivity + "]";
}
}