aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/ConversationsPlusPreferences.java
diff options
context:
space:
mode:
authorsteckbrief <steckbrief@chefmail.de>2017-08-07 12:57:57 +0200
committersteckbrief <steckbrief@chefmail.de>2017-08-07 12:57:57 +0200
commita892bb6f1685b84b74ba37e5a6a24ee8fb45eee7 (patch)
treef6d8036841f961dd987c2fb48e41983b327be049 /src/main/java/de/thedevstack/conversationsplus/ConversationsPlusPreferences.java
parentbe1992ce897d3b0551e545646a3e0f45cc6dd8c2 (diff)
Simplifying introduction of new XEP implementations, implements FS#250 and FS#251 (Privacy and Security settings), refactoring of location of some interfaces
Diffstat (limited to 'src/main/java/de/thedevstack/conversationsplus/ConversationsPlusPreferences.java')
-rw-r--r--src/main/java/de/thedevstack/conversationsplus/ConversationsPlusPreferences.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/java/de/thedevstack/conversationsplus/ConversationsPlusPreferences.java b/src/main/java/de/thedevstack/conversationsplus/ConversationsPlusPreferences.java
index 546ad7ee..e59f5b57 100644
--- a/src/main/java/de/thedevstack/conversationsplus/ConversationsPlusPreferences.java
+++ b/src/main/java/de/thedevstack/conversationsplus/ConversationsPlusPreferences.java
@@ -14,6 +14,18 @@ public class ConversationsPlusPreferences extends Settings {
private static ConversationsPlusPreferences instance;
private final SharedPreferences sharedPreferences;
+ public static boolean sendEntityTime() {
+ return getBoolean("send_entity_time", true);
+ }
+
+ public static boolean sendSoftwareVersion() {
+ return getBoolean("send_software_info", true);
+ }
+
+ public static boolean sendOsInformation() {
+ return getBoolean("send_os_info", true);
+ }
+
public static boolean logStanzas() {
return getBoolean("log_stanzas", true);
}