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.XmlElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * Notification of registry events.
20   * 
21   * <p>Java class for NotificationType complex type.
22   * 
23   * <p>The following schema fragment specifies the expected content contained within this class.
24   * 
25   * <pre>
26   * &lt;complexType name="NotificationType">
27   *   &lt;complexContent>
28   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}RegistryObjectType">
29   *       &lt;sequence>
30   *         &lt;element ref="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}RegistryObjectList"/>
31   *       &lt;/sequence>
32   *       &lt;attribute name="subscription" use="required" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}referenceURI" />
33   *     &lt;/extension>
34   *   &lt;/complexContent>
35   * &lt;/complexType>
36   * </pre>
37   * 
38   * 
39   */
40  @XmlAccessorType(XmlAccessType.FIELD)
41  @XmlType(name = "NotificationType", propOrder = {
42      "registryObjectList"
43  })
44  public class NotificationType
45      extends RegistryObjectType
46  {
47  
48      @XmlElement(name = "RegistryObjectList", required = true)
49      protected RegistryObjectListType registryObjectList;
50      @XmlAttribute(required = true)
51      protected String subscription;
52  
53      /**
54       * Gets the value of the registryObjectList property.
55       * 
56       * @return
57       *     possible object is
58       *     {@link RegistryObjectListType }
59       *     
60       */
61      public RegistryObjectListType getRegistryObjectList() {
62          return registryObjectList;
63      }
64  
65      /**
66       * Sets the value of the registryObjectList property.
67       * 
68       * @param value
69       *     allowed object is
70       *     {@link RegistryObjectListType }
71       *     
72       */
73      public void setRegistryObjectList(RegistryObjectListType value) {
74          this.registryObjectList = value;
75      }
76  
77      /**
78       * Gets the value of the subscription property.
79       * 
80       * @return
81       *     possible object is
82       *     {@link String }
83       *     
84       */
85      public String getSubscription() {
86          return subscription;
87      }
88  
89      /**
90       * Sets the value of the subscription property.
91       * 
92       * @param value
93       *     allowed object is
94       *     {@link String }
95       *     
96       */
97      public void setSubscription(String value) {
98          this.subscription = value;
99      }
100 
101 }