View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.9-03/31/2009 04:14 PM(snajper)-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2009.04.30 at 06:20:20 PM CEST 
6   //
7   
8   
9   package org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rim;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlSchemaType;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * Abstract Base type for all types of Notify Actions
20   * 
21   * <p>Java class for NotifyActionType complex type.
22   * 
23   * <p>The following schema fragment specifies the expected content contained within this class.
24   * 
25   * <pre>
26   * &lt;complexType name="NotifyActionType">
27   *   &lt;complexContent>
28   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}ActionType">
29   *       &lt;attribute name="notificationOption" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}referenceURI" default="urn:oasis:names:tc:ebxml-regrep:NotificationOptionType:ObjectRefs" />
30   *       &lt;attribute name="endPoint" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
31   *     &lt;/extension>
32   *   &lt;/complexContent>
33   * &lt;/complexType>
34   * </pre>
35   * 
36   * 
37   */
38  @XmlAccessorType(XmlAccessType.FIELD)
39  @XmlType(name = "NotifyActionType")
40  public class NotifyActionType
41      extends ActionType
42  {
43  
44      @XmlAttribute
45      protected String notificationOption;
46      @XmlAttribute(required = true)
47      @XmlSchemaType(name = "anyURI")
48      protected String endPoint;
49  
50      /**
51       * Gets the value of the notificationOption property.
52       * 
53       * @return
54       *     possible object is
55       *     {@link String }
56       *     
57       */
58      public String getNotificationOption() {
59          if (notificationOption == null) {
60              return "urn:oasis:names:tc:ebxml-regrep:NotificationOptionType:ObjectRefs";
61          } else {
62              return notificationOption;
63          }
64      }
65  
66      /**
67       * Sets the value of the notificationOption property.
68       * 
69       * @param value
70       *     allowed object is
71       *     {@link String }
72       *     
73       */
74      public void setNotificationOption(String value) {
75          this.notificationOption = value;
76      }
77  
78      /**
79       * Gets the value of the endPoint property.
80       * 
81       * @return
82       *     possible object is
83       *     {@link String }
84       *     
85       */
86      public String getEndPoint() {
87          return endPoint;
88      }
89  
90      /**
91       * Sets the value of the endPoint property.
92       * 
93       * @param value
94       *     allowed object is
95       *     {@link String }
96       *     
97       */
98      public void setEndPoint(String value) {
99          this.endPoint = value;
100     }
101 
102 }