Class BaseActionEventMessage

All Implemented Interfaces:
Serializable, IBaseActionEvent

public class BaseActionEventMessage extends BaseActionEvent
Event that is sent when a message within the client side message bus is received.
See Also:
  • Constructor Details

    • BaseActionEventMessage

      public BaseActionEventMessage(UIComponent component, String type)
  • Method Details

    • getMessageCommand

      public String getMessageCommand()
      This is the command of the message. A message is sent in the format messageCommand(messageParam1,messageParam2). This method will return "messageCommand".
    • getMessageParameters

      public String[] getMessageParameters()
      The parameters of the message. A message is sent in the format messageCommand(messageParam1,messageParam2). This method will return ["messageParam1","messageParam2"].