| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 
 | package org.jboss.ws.extensions.eventing.metadata;
import java.net.URI;
import java.net.URISyntaxException;
import org.jboss.ws.metadata.umdm.MetaDataExtension;
/**
 * Eventing specific endpoint meta data extensions.
 *
 * @author Heiko Braun, <heiko@openj.net>
 * @since 21-Mar-2006
 */
public class EventingEpMetaExt extends MetaDataExtension {
   private boolean isEventSource = true;
   private String eventSourceNS;
   private String[] notificationSchema;
   private String notificationRootElementNS;
   public EventingEpMetaExt(String extensionNameSpace) {
      super(extensionNameSpace);
   }
   public boolean isEventSource() {
      return isEventSource;
   }
   public void setEventSource(boolean eventSource) {
      isEventSource = eventSource;
   }
   public String getEventSourceNS() {
      return eventSourceNS;
   }
   public void setEventSourceNS(String eventSourceNS) {
      this.eventSourceNS = eventSourceNS;
   }
   public URI getEventSourceURI()
   {
      try
      {
         return new URI(eventSourceNS);
      }
      catch (URISyntaxException e)
      {
         throw new IllegalArgumentException("Illegal event source URI: " + eventSourceNS);
      }
   }
   public String[] getNotificationSchema() {
      return this.notificationSchema;
   }
   public void setNotificationSchema(String[] notificationSchema) {
      this.notificationSchema = notificationSchema;
   }
   public String getNotificationRootElementNS() {
      return notificationRootElementNS;
   }
   public void setNotificationRootElementNS(String notificationRootElementNS) {
      this.notificationRootElementNS = notificationRootElementNS;
   }
}
 |