aboutsummaryrefslogtreecommitdiff
path: root/juick-core/src/main/java/com/juick/server/helpers/NotifyOpts.java
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-09-03 11:06:41 +0300
committerGravatar Vitaly Takmazov2016-09-03 18:12:15 +0300
commit26ed351bbc59767be8ce2500cbb5250de63df5c9 (patch)
tree72f83368f4c91fb7f1b79dda750c310b2346069e /juick-core/src/main/java/com/juick/server/helpers/NotifyOpts.java
parentd87a5f0ad2e912c6eff1145006c5db91de247e4b (diff)
Juick settings
Diffstat (limited to 'juick-core/src/main/java/com/juick/server/helpers/NotifyOpts.java')
-rw-r--r--juick-core/src/main/java/com/juick/server/helpers/NotifyOpts.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/juick-core/src/main/java/com/juick/server/helpers/NotifyOpts.java b/juick-core/src/main/java/com/juick/server/helpers/NotifyOpts.java
new file mode 100644
index 00000000..377b0a50
--- /dev/null
+++ b/juick-core/src/main/java/com/juick/server/helpers/NotifyOpts.java
@@ -0,0 +1,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;
+ }
+}