1
2
3
4
5
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.XmlElement;
15 import javax.xml.bind.annotation.XmlRootElement;
16 import javax.xml.bind.annotation.XmlType;
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 "roles"
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 = "fnframe", required = true)
35 @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
36 protected String fnframe;
37 @XmlElement(required = true)
38 protected Roles roles;
39
40
41
42
43
44
45
46
47
48 public String getClazz() {
49 return clazz;
50 }
51
52
53
54
55
56
57
58
59
60 public void setClazz(String value) {
61 this.clazz = value;
62 }
63
64
65
66
67
68
69
70
71
72 public String getFnframe() {
73 return fnframe;
74 }
75
76
77
78
79
80
81
82
83
84 public void setFnframe(String value) {
85 this.fnframe = value;
86 }
87
88
89
90
91
92
93
94
95
96 public Roles getRoles() {
97 return roles;
98 }
99
100
101
102
103
104
105
106
107
108 public void setRoles(Roles value) {
109 this.roles = value;
110 }
111
112 }