View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
3   // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2019.08.22 at 12:18:25 PM UTC 
6   //
7   
8   
9   package gov.ojp.it.jxdm._3_0_3.proxy.ncic_2000._1_0;
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.XmlSchemaType;
16  import javax.xml.bind.annotation.XmlType;
17  import javax.xml.bind.annotation.XmlValue;
18  import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
19  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
20  
21  
22  /**
23   * <p>Java class for EYEType complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType name="EYEType"&gt;
29   *   &lt;simpleContent&gt;
30   *     &lt;extension base="&lt;http://www.it.ojp.gov/jxdm/ncic_2000/1.0.2&gt;EYEType"&gt;
31   *       &lt;attGroup ref="{http://www.it.ojp.gov/jxdm/3.0.3}SuperTypeMetadata"/&gt;
32   *     &lt;/extension&gt;
33   *   &lt;/simpleContent&gt;
34   * &lt;/complexType&gt;
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "EYEType", propOrder = {
41      "value"
42  })
43  public class EYEType {
44  
45      @XmlValue
46      @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
47      protected String value;
48      @XmlAttribute(name = "sourceIDText")
49      protected String sourceIDText;
50      @XmlAttribute(name = "id")
51      @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
52      @XmlID
53      @XmlSchemaType(name = "ID")
54      protected String id;
55  
56      /**
57       * Default no-arg constructor
58       * 
59       */
60      public EYEType() {
61          super();
62      }
63  
64      /**
65       * Fully-initialising value constructor
66       * 
67       */
68      public EYEType(final String value, final String sourceIDText, final String id) {
69          this.value = value;
70          this.sourceIDText = sourceIDText;
71          this.id = id;
72      }
73  
74      /**
75       * Gets the value of the value property.
76       * 
77       * @return
78       *     possible object is
79       *     {@link String }
80       *     
81       */
82      public String getValue() {
83          return value;
84      }
85  
86      /**
87       * Sets the value of the value property.
88       * 
89       * @param value
90       *     allowed object is
91       *     {@link String }
92       *     
93       */
94      public void setValue(String value) {
95          this.value = value;
96      }
97  
98      /**
99       * Gets the value of the sourceIDText property.
100      * 
101      * @return
102      *     possible object is
103      *     {@link String }
104      *     
105      */
106     public String getSourceIDText() {
107         return sourceIDText;
108     }
109 
110     /**
111      * Sets the value of the sourceIDText property.
112      * 
113      * @param value
114      *     allowed object is
115      *     {@link String }
116      *     
117      */
118     public void setSourceIDText(String value) {
119         this.sourceIDText = value;
120     }
121 
122     /**
123      * Gets the value of the id property.
124      * 
125      * @return
126      *     possible object is
127      *     {@link String }
128      *     
129      */
130     public String getId() {
131         return id;
132     }
133 
134     /**
135      * Sets the value of the id property.
136      * 
137      * @param value
138      *     allowed object is
139      *     {@link String }
140      *     
141      */
142     public void setId(String value) {
143         this.id = value;
144     }
145 
146 }