blob: 377b0a503c8da42dd555a1f7cac89b472a24a949 (
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
|
package com.juick.server.helpers;
/**
* Created by vt on 03/09/16.
*/
public class NotifyOpts {
private boolean repliesEnabled;
private boolean subscriptionsEnabled;
private boolean recommendationsEnabled;
public boolean isRepliesEnabled() {
return repliesEnabled;
}
public void setRepliesEnabled(boolean repliesEnabled) {
this.repliesEnabled = repliesEnabled;
}
public boolean isSubscriptionsEnabled() {
return subscriptionsEnabled;
}
public void setSubscriptionsEnabled(boolean subscriptionsEnabled) {
this.subscriptionsEnabled = subscriptionsEnabled;
}
public boolean isRecommendationsEnabled() {
return recommendationsEnabled;
}
public void setRecommendationsEnabled(boolean recommendationsEnabled) {
this.recommendationsEnabled = recommendationsEnabled;
}
}
|