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.XmlRootElement;
15  import javax.xml.bind.annotation.XmlSchemaType;
16  import javax.xml.bind.annotation.XmlType;
17  import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
18  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;attribute name="prefix" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
31   *       &lt;attribute name="uri" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
32   *     &lt;/restriction>
33   *   &lt;/complexContent>
34   * &lt;/complexType>
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "")
41  @XmlRootElement(name = "ns-prefix-in-attribute-values")
42  public class NsPrefixInAttributeValues {
43  
44      @XmlAttribute(name = "prefix", required = true)
45      @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
46      @XmlSchemaType(name = "NMTOKEN")
47      protected String prefix;
48      @XmlAttribute(name = "uri", required = true)
49      @XmlSchemaType(name = "anySimpleType")
50      protected String uri;
51  
52      /**
53       * Gets the value of the prefix property.
54       * 
55       * @return
56       *     possible object is
57       *     {@link String }
58       *     
59       */
60      public String getPrefix() {
61          return prefix;
62      }
63  
64      /**
65       * Sets the value of the prefix property.
66       * 
67       * @param value
68       *     allowed object is
69       *     {@link String }
70       *     
71       */
72      public void setPrefix(String value) {
73          this.prefix = value;
74      }
75  
76      /**
77       * Gets the value of the uri property.
78       * 
79       * @return
80       *     possible object is
81       *     {@link String }
82       *     
83       */
84      public String getUri() {
85          return uri;
86      }
87  
88      /**
89       * Sets the value of the uri property.
90       * 
91       * @param value
92       *     allowed object is
93       *     {@link String }
94       *     
95       */
96      public void setUri(String value) {
97          this.uri = value;
98      }
99  
100 }