Interface BusinessEvent


public interface BusinessEvent
An in-memory representation of a Business Event. Each event has a name which is represented as a QName. The (optional) body of the event is an XML fragment. It also has named headers. Each header can have multiple values. The schema for event bodies and description of its headers are described in an XML Event Description Language (EDL).
  • Field Details

  • Method Details

    • getEventName

      QName getEventName()
      The name of the Event. This will correspond to the name given in the event's EDL.
      Returns:
      The name of the event
    • getProperty

      Object getProperty(String name)
      Get a single value for a header. If the header has multiple values, the result of this method is a random one.
      Parameters:
      name - - property name
      Returns:
      A value for the given header name or null if there are no values for this header
    • getProperties

      Map<String,Object> getProperties()
      Get all the properties of this event.
      Returns:
      all the properties of this event.
    • getBody

      Element getBody()
      Get the XML body of the event. Since the body is optional, this value may be null.
      Returns:
      The body payload as DOM element.
    • getBodyAsText

      String getBodyAsText()
      Get the payload body as serialized XML text. Since the body is optional, this value may be null.
      Returns:
      The body payload as text.
    • getAsDoc

      Document getAsDoc()
      Return the event as a DOM document.
      Returns:
      the event as a DOM document.