Class DefaultEventType

java.lang.Object
org.apache.jackrabbit.webdav.observation.DefaultEventType
All Implemented Interfaces:
EventType, XmlSerializable

public class DefaultEventType extends Object implements EventType
DefaultEventType defines a simple EventType implementation that only consists of a qualified event name consisting of namespace plus local name.
  • Method Details

    • create

      public static EventType create(String localName, Namespace namespace)
      Factory method to create a new EventType.
      Parameters:
      localName -
      namespace -
      Returns:
    • create

      public static EventType[] create(String[] localNames, Namespace namespace)
      Factory method to create an array of new EventType for the specified localNames and the specified namespace.
      Parameters:
      localNames -
      namespace -
      Returns:
      An array of event types.
    • createFromXml

      public static EventType[] createFromXml(Element eventType)
      Retrieves one or multiple EventTypes from the 'eventtype' Xml element. While a subscription may register multiple types (thus the 'eventtype' contains multiple child elements), a single event may only refer to one single type.
      Parameters:
      eventType -
      Returns:
    • getName

      public String getName()
      Specified by:
      getName in interface EventType
      See Also:
    • getNamespace

      public Namespace getNamespace()
      Specified by:
      getNamespace in interface EventType
      See Also:
    • toXml

      public Element toXml(Document document)
      Returns a single empty Xml element where namespace and local name of this event type define the elements name.
       EventType.create("someevent", Namespace.getNamespace("F", "http://www.foo.bar/eventtypes"));
      
       returns the following element upon call of toXml:
      
       <F:someevent xmlns:F="http://www.foo.bar/eventtypes" />
       
      Specified by:
      toXml in interface XmlSerializable
      Parameters:
      document - to be used as factory.
      Returns:
      a w3c element representing this object
      See Also: