Interface DismissibleMessagesService
- All Known Implementing Classes:
DismissibleMessagesServiceImpl
public interface DismissibleMessagesService
Service for handling dismissible messages in Crowd console.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
dismissMessage
(String messageKey) Dismisses the message, denoting that the message should not be shown in Crowd console.void
enableMessage
(String messageKey) Enables the message, denoting that the message should be shown in Crowd console.boolean
isDismissed
(String messageKey)
-
Method Details
-
enableMessage
Enables the message, denoting that the message should be shown in Crowd console.- Parameters:
messageKey
- key of the message
-
dismissMessage
Dismisses the message, denoting that the message should not be shown in Crowd console.- Parameters:
messageKey
- key of the message
-
isDismissed
- Parameters:
messageKey
- key of the message- Returns:
- true if the message is dismissed, denoting that it should not be shown in Crowd console. False otherwise.
-