View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
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: 2015.05.01 at 10:44:03 PM CEST 
6   //
7   
8   
9   package org.openehealth.ipf.commons.xml.svrl;
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.XmlID;
15  import javax.xml.bind.annotation.XmlRootElement;
16  import javax.xml.bind.annotation.XmlSchemaType;
17  import javax.xml.bind.annotation.XmlType;
18  import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
19  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
20  
21  
22  /**
23   * <p>Java class for anonymous complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType>
29   *   &lt;complexContent>
30   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
31   *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
32   *       &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
33   *       &lt;attribute name="role" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
34   *     &lt;/restriction>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "")
43  @XmlRootElement(name = "active-pattern")
44  public class ActivePattern {
45  
46      @XmlAttribute(name = "id")
47      @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
48      @XmlID
49      @XmlSchemaType(name = "ID")
50      protected String id;
51      @XmlAttribute(name = "name")
52      @XmlSchemaType(name = "anySimpleType")
53      protected String name;
54      @XmlAttribute(name = "role")
55      @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
56      @XmlSchemaType(name = "NMTOKEN")
57      protected String role;
58  
59      /**
60       * Gets the value of the id property.
61       * 
62       * @return
63       *     possible object is
64       *     {@link String }
65       *     
66       */
67      public String getId() {
68          return id;
69      }
70  
71      /**
72       * Sets the value of the id property.
73       * 
74       * @param value
75       *     allowed object is
76       *     {@link String }
77       *     
78       */
79      public void setId(String value) {
80          this.id = value;
81      }
82  
83      /**
84       * Gets the value of the name property.
85       * 
86       * @return
87       *     possible object is
88       *     {@link String }
89       *     
90       */
91      public String getName() {
92          return name;
93      }
94  
95      /**
96       * Sets the value of the name property.
97       * 
98       * @param value
99       *     allowed object is
100      *     {@link String }
101      *     
102      */
103     public void setName(String value) {
104         this.name = value;
105     }
106 
107     /**
108      * Gets the value of the role property.
109      * 
110      * @return
111      *     possible object is
112      *     {@link String }
113      *     
114      */
115     public String getRole() {
116         return role;
117     }
118 
119     /**
120      * Sets the value of the role property.
121      * 
122      * @param value
123      *     allowed object is
124      *     {@link String }
125      *     
126      */
127     public void setRole(String value) {
128         this.role = value;
129     }
130 
131 }