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 05:16:47 PM CET 
6   //
7   
8   
9   package eu.fbk.dkm.pikes.resources.util.semlink.vnpb;
10  
11  import java.util.ArrayList;
12  import java.util.List;
13  import javax.xml.bind.annotation.XmlAccessType;
14  import javax.xml.bind.annotation.XmlAccessorType;
15  import javax.xml.bind.annotation.XmlAttribute;
16  import javax.xml.bind.annotation.XmlElement;
17  import javax.xml.bind.annotation.XmlRootElement;
18  import javax.xml.bind.annotation.XmlType;
19  import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
20  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
21  
22  
23  /**
24   * 
25   */
26  @XmlAccessorType(XmlAccessType.FIELD)
27  @XmlType(name = "", propOrder = {
28      "role"
29  })
30  @XmlRootElement(name = "argmap")
31  public class Argmap {
32  
33      @XmlAttribute(name = "pb-roleset", required = true)
34      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
35      protected String pbRoleset;
36      @XmlAttribute(name = "vn-class", required = true)
37      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
38      protected String vnClass;
39      @XmlElement(required = true)
40      protected List<Role> role;
41  
42      /**
43       * Gets the value of the pbRoleset property.
44       * 
45       * @return
46       *     possible object is
47       *     {@link String }
48       *     
49       */
50      public String getPbRoleset() {
51          return pbRoleset;
52      }
53  
54      /**
55       * Sets the value of the pbRoleset property.
56       * 
57       * @param value
58       *     allowed object is
59       *     {@link String }
60       *     
61       */
62      public void setPbRoleset(String value) {
63          this.pbRoleset = value;
64      }
65  
66      /**
67       * Gets the value of the vnClass property.
68       * 
69       * @return
70       *     possible object is
71       *     {@link String }
72       *     
73       */
74      public String getVnClass() {
75          return vnClass;
76      }
77  
78      /**
79       * Sets the value of the vnClass property.
80       * 
81       * @param value
82       *     allowed object is
83       *     {@link String }
84       *     
85       */
86      public void setVnClass(String value) {
87          this.vnClass = value;
88      }
89  
90      /**
91       * Gets the value of the role property.
92       * 
93       * <p>
94       * This accessor method returns a reference to the live list,
95       * not a snapshot. Therefore any modification you make to the
96       * returned list will be present inside the JAXB object.
97       * This is why there is not a <CODE>set</CODE> method for the role property.
98       * 
99       * <p>
100      * For example, to add a new item, do as follows:
101      * <pre>
102      *    getRole().add(newItem);
103      * </pre>
104      * 
105      * 
106      * <p>
107      * Objects of the following type(s) are allowed in the list
108      * {@link Role }
109      * 
110      * 
111      */
112     public List<Role> getRole() {
113         if (role == null) {
114             role = new ArrayList<Role>();
115         }
116         return this.role;
117     }
118 
119 }