Mercury-IM/entity/src/main/java/org/mercury_im/messenger/core/entity/ChatPreferences.java
2019-11-07 00:59:56 +01:00

37 lines
925 B
Java

package org.mercury_im.messenger.core.entity;
public interface ChatPreferences {
NotificationPreferences getNotificationPreference();
boolean setNotificationPreference(NotificationPreferences notificationPreferences);
boolean isTypingNotificationsSupported();
void setTypingNotificationsSupported(boolean typingNotificationsSupported);
boolean isSendTypingNotifications();
void setSendTypingNotifications(boolean sendTypingNotifications);
boolean isReadNotificationsSupported();
void setReadNotificationsSupported(boolean readNotificationsSupported);
boolean isSendReadNotifications();
void setSendReadNotifications(boolean sendReadNotifications);
interface NotificationPreferences {
boolean isNotifyOnMessage();
void setNotifyOnMessage(boolean notify);
boolean isNotifyOnMention();
void setNotifyOnMention(boolean notify);
}
}