Class EventDiscovery

java.lang.Object
org.apache.jackrabbit.webdav.observation.EventDiscovery
All Implemented Interfaces:
ObservationConstants, XmlSerializable

public class EventDiscovery extends Object implements ObservationConstants, XmlSerializable
EventDiscovery represents the request body of a successful POLL request. It reveals all events that occurred since the last POLL. The definition what events that particular subscription is interested in was specified with the initial SUBSCRIPTION that started the event listening.
  • Constructor Details

    • EventDiscovery

      public EventDiscovery()
  • Method Details

    • addEventBundle

      public void addEventBundle(EventBundle eventBundle)
      Add the Xml representation of an single 'eventBundle' listing the events that resulted from a change in the server, filtered by the restrictions present in the corresponding subscription.
      Parameters:
      eventBundle -
      See Also:
    • getEventBundles

      public Iterator<EventBundle> getEventBundles()
      Returns an iterator over the event bundles currently present on this discovery.
      Returns:
      iterator over event bundles present.
    • isEmpty

      public boolean isEmpty()
      Returns true, if this event discovery does not report any events (thus getEventBundles() would return an empty iterator.
      Returns:
      true if getEventBundles() would return an empty iterator, false otherwise.
    • toXml

      public Element toXml(Document document)
      Returns the Xml representation of this EventDiscovery as being present in the POLL response body.
      Specified by:
      toXml in interface XmlSerializable
      Parameters:
      document -
      Returns:
      Xml representation
      See Also:
    • createFromXml

      public static EventDiscovery createFromXml(Element eventDiscoveryElement)
      Build a EventDiscovery from the specified xml element.
      Parameters:
      eventDiscoveryElement -
      Returns:
      new EventDiscovery instance.
      Throws:
      IllegalArgumentException - if the given document is null or does not provide the required element.