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:07:35 PM CET 
6   //
7   
8   
9   package eu.fbk.dkm.pikes.resources.util.semlink.vnfnroles;
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 = "role")
29  public class Role {
30  
31      @XmlAttribute(name = "fnrole", required = true)
32      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
33      protected String fnrole;
34      @XmlAttribute(name = "vnrole", required = true)
35      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
36      protected String vnrole;
37      @XmlValue
38      protected String value;
39  
40      /**
41       * Gets the value of the fnrole property.
42       * 
43       * @return
44       *     possible object is
45       *     {@link String }
46       *     
47       */
48      public String getFnrole() {
49          return fnrole;
50      }
51  
52      /**
53       * Sets the value of the fnrole property.
54       * 
55       * @param value
56       *     allowed object is
57       *     {@link String }
58       *     
59       */
60      public void setFnrole(String value) {
61          this.fnrole = value;
62      }
63  
64      /**
65       * Gets the value of the vnrole property.
66       * 
67       * @return
68       *     possible object is
69       *     {@link String }
70       *     
71       */
72      public String getVnrole() {
73          return vnrole;
74      }
75  
76      /**
77       * Sets the value of the vnrole property.
78       * 
79       * @param value
80       *     allowed object is
81       *     {@link String }
82       *     
83       */
84      public void setVnrole(String value) {
85          this.vnrole = value;
86      }
87  
88      /**
89       * Gets the value of the value property.
90       * 
91       * @return
92       *     possible object is
93       *     {@link String }
94       *     
95       */
96      public String getvalue() {
97          return value;
98      }
99  
100     /**
101      * Sets the value of the value property.
102      * 
103      * @param value
104      *     allowed object is
105      *     {@link String }
106      *     
107      */
108     public void setvalue(String value) {
109         this.value = value;
110     }
111 
112 }