Notification.java
1.85 KB
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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.apache.sling.commons.json.JSONObject
*/
package com.adobe.cq.mobile.notifications.impl;
import com.adobe.cq.mobile.notifications.impl.LocalizedNotification;
import com.adobe.cq.mobile.notifications.impl.NotificationState;
import com.adobe.cq.mobile.notifications.impl.exceptions.NotificationException;
import java.util.Calendar;
import java.util.Map;
import org.apache.sling.commons.json.JSONObject;
public interface Notification {
public static final String PN_PLATFORMS = "platforms";
public static final String PN_MESSAGE = "message";
public static final String PN_ID = "id";
public static final String PN_STATE = "state";
public static final String PN_LAST_SENT = "lastSent";
public static final String PN_TARGET_FILTER = "targetFilter";
public static final String PN_PATH = "path";
public String getId();
public void setTitle(String var1) throws NotificationException;
public String getTitle();
public void addLocalizedNotification(LocalizedNotification var1) throws NotificationException;
public Map<String, LocalizedNotification> getLocalizedNotifications();
public LocalizedNotification getLocalizedNotification(String var1);
public void setDescription(String var1) throws NotificationException;
public String getDescription();
public void setState(NotificationState var1);
public NotificationState getState();
public Calendar getLastSent();
public void setFilterParameters(String var1);
public String getFilterParameters();
public void setPlatforms(String[] var1);
public String[] getPlatforms();
public String getPlatformsString();
public void setPath(String var1);
public String getPath();
public JSONObject toJSONObject();
public Map<String, Object> getProperties();
}