فهرست منبع

adapt to de-lomboked code-base

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger 4 سال پیش
والد
کامیت
712fdfeac4
1فایلهای تغییر یافته به همراه16 افزوده شده و 0 حذف شده
  1. 16 0
      app/src/main/java/com/nextcloud/talk/models/json/push/DecryptedPushMessage.java

+ 16 - 0
app/src/main/java/com/nextcloud/talk/models/json/push/DecryptedPushMessage.java

@@ -105,6 +105,14 @@ public class DecryptedPushMessage {
         return this.timestamp;
     }
 
+    public long[] getNotificationIds() {
+        return notificationIds;
+    }
+
+    public boolean isDeleteMultiple() {
+        return deleteMultiple;
+    }
+
     public void setApp(String app) {
         this.app = app;
     }
@@ -145,6 +153,14 @@ public class DecryptedPushMessage {
         this.timestamp = timestamp;
     }
 
+    public void setNotificationIds(long[] notificationIds) {
+        this.notificationIds = notificationIds;
+    }
+
+    public void setDeleteMultiple(boolean deleteMultiple) {
+        this.deleteMultiple = deleteMultiple;
+    }
+
     public boolean equals(final Object o) {
         if (o == this) {
             return true;