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.rs;
10  
11  import java.util.ArrayList;
12  import java.util.List;
13  import javax.xml.bind.annotation.XmlAccessType;
14  import javax.xml.bind.annotation.XmlAccessorType;
15  import javax.xml.bind.annotation.XmlAttribute;
16  import javax.xml.bind.annotation.XmlElement;
17  import javax.xml.bind.annotation.XmlRootElement;
18  import javax.xml.bind.annotation.XmlType;
19  
20  
21  /**
22   * <p>Java class for anonymous complex type.
23   * 
24   * <p>The following schema fragment specifies the expected content contained within this class.
25   * 
26   * <pre>
27   * &lt;complexType>
28   *   &lt;complexContent>
29   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30   *       &lt;sequence>
31   *         &lt;element ref="{urn:oasis:names:tc:ebxml-regrep:xsd:rs:3.0}RegistryError" maxOccurs="unbounded"/>
32   *       &lt;/sequence>
33   *       &lt;attribute name="highestSeverity" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}referenceURI" />
34   *     &lt;/restriction>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "", propOrder = {
43      "registryError"
44  })
45  @XmlRootElement(name = "RegistryErrorList")
46  public class RegistryErrorList {
47  
48      @XmlElement(name = "RegistryError", required = true)
49      protected List<RegistryError> registryError;
50      @XmlAttribute
51      protected String highestSeverity;
52  
53      /**
54       * Gets the value of the registryError property.
55       * 
56       * <p>
57       * This accessor method returns a reference to the live list,
58       * not a snapshot. Therefore any modification you make to the
59       * returned list will be present inside the JAXB object.
60       * This is why there is not a <CODE>set</CODE> method for the registryError property.
61       * 
62       * <p>
63       * For example, to add a new item, do as follows:
64       * <pre>
65       *    getRegistryError().add(newItem);
66       * </pre>
67       * 
68       * 
69       * <p>
70       * Objects of the following type(s) are allowed in the list
71       * {@link RegistryError }
72       * 
73       * 
74       */
75      public List<RegistryError> getRegistryError() {
76          if (registryError == null) {
77              registryError = new ArrayList<>();
78          }
79          return this.registryError;
80      }
81  
82      /**
83       * Gets the value of the highestSeverity property.
84       * 
85       * @return
86       *     possible object is
87       *     {@link String }
88       *     
89       */
90      public String getHighestSeverity() {
91          return highestSeverity;
92      }
93  
94      /**
95       * Sets the value of the highestSeverity property.
96       * 
97       * @param value
98       *     allowed object is
99       *     {@link String }
100      *     
101      */
102     public void setHighestSeverity(String value) {
103         this.highestSeverity = value;
104     }
105 
106 }