Interface DismissibleMessagesService

All Known Implementing Classes:
DismissibleMessagesServiceImpl

public interface DismissibleMessagesService
Service for handling dismissible messages in Crowd console.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    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

      void enableMessage(String messageKey)
      Enables the message, denoting that the message should be shown in Crowd console.
      Parameters:
      messageKey - key of the message
    • dismissMessage

      void dismissMessage(String messageKey)
      Dismisses the message, denoting that the message should not be shown in Crowd console.
      Parameters:
      messageKey - key of the message
    • isDismissed

      boolean isDismissed(String messageKey)
      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.