1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
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.11.13 at 04:30:18 PM CET 
6   //
7   
8   
9   package eu.fbk.dkm.pikes.resources.util.semlink.vnfn;
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.XmlType;
16  import javax.xml.bind.annotation.XmlValue;
17  import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
18  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19  
20  
21  /**
22   * 
23   */
24  @XmlAccessorType(XmlAccessType.FIELD)
25  @XmlType(name = "", propOrder = {
26      "value"
27  })
28  @XmlRootElement(name = "vncls")
29  public class Vncls {
30  
31      @XmlAttribute(name = "class", required = true)
32      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
33      protected String clazz;
34      @XmlAttribute(name = "vnmember", required = true)
35      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
36      protected String vnmember;
37      @XmlAttribute(name = "fnframe", required = true)
38      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
39      protected String fnframe;
40      @XmlAttribute(name = "fnlexent", required = true)
41      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
42      protected String fnlexent;
43      @XmlAttribute(name = "versionID")
44      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
45      protected String versionID;
46      @XmlValue
47      protected String value;
48  
49      /**
50       * Gets the value of the clazz property.
51       * 
52       * @return
53       *     possible object is
54       *     {@link String }
55       *     
56       */
57      public String getClazz() {
58          return clazz;
59      }
60  
61      /**
62       * Sets the value of the clazz property.
63       * 
64       * @param value
65       *     allowed object is
66       *     {@link String }
67       *     
68       */
69      public void setClazz(String value) {
70          this.clazz = value;
71      }
72  
73      /**
74       * Gets the value of the vnmember property.
75       * 
76       * @return
77       *     possible object is
78       *     {@link String }
79       *     
80       */
81      public String getVnmember() {
82          return vnmember;
83      }
84  
85      /**
86       * Sets the value of the vnmember property.
87       * 
88       * @param value
89       *     allowed object is
90       *     {@link String }
91       *     
92       */
93      public void setVnmember(String value) {
94          this.vnmember = value;
95      }
96  
97      /**
98       * Gets the value of the fnframe property.
99       * 
100      * @return
101      *     possible object is
102      *     {@link String }
103      *     
104      */
105     public String getFnframe() {
106         return fnframe;
107     }
108 
109     /**
110      * Sets the value of the fnframe property.
111      * 
112      * @param value
113      *     allowed object is
114      *     {@link String }
115      *     
116      */
117     public void setFnframe(String value) {
118         this.fnframe = value;
119     }
120 
121     /**
122      * Gets the value of the fnlexent property.
123      * 
124      * @return
125      *     possible object is
126      *     {@link String }
127      *     
128      */
129     public String getFnlexent() {
130         return fnlexent;
131     }
132 
133     /**
134      * Sets the value of the fnlexent property.
135      * 
136      * @param value
137      *     allowed object is
138      *     {@link String }
139      *     
140      */
141     public void setFnlexent(String value) {
142         this.fnlexent = value;
143     }
144 
145     /**
146      * Gets the value of the versionID property.
147      * 
148      * @return
149      *     possible object is
150      *     {@link String }
151      *     
152      */
153     public String getVersionID() {
154         if (versionID == null) {
155             return "vn3.2";
156         } else {
157             return versionID;
158         }
159     }
160 
161     /**
162      * Sets the value of the versionID property.
163      * 
164      * @param value
165      *     allowed object is
166      *     {@link String }
167      *     
168      */
169     public void setVersionID(String value) {
170         this.versionID = value;
171     }
172 
173     /**
174      * Gets the value of the value property.
175      * 
176      * @return
177      *     possible object is
178      *     {@link String }
179      *     
180      */
181     public String getvalue() {
182         return value;
183     }
184 
185     /**
186      * Sets the value of the value property.
187      * 
188      * @param value
189      *     allowed object is
190      *     {@link String }
191      *     
192      */
193     public void setvalue(String value) {
194         this.value = value;
195     }
196 
197 }