1
2 package org.miloss.fgsms.services.interfaces.policyconfiguration;
3
4 import java.io.Serializable;
5 import java.util.ArrayList;
6 import java.util.List;
7 import javax.xml.bind.annotation.XmlAccessType;
8 import javax.xml.bind.annotation.XmlAccessorType;
9 import javax.xml.bind.annotation.XmlElement;
10 import javax.xml.bind.annotation.XmlType;
11 import org.miloss.fgsms.services.interfaces.common.NameValuePair;
12 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name = "GetPluginHtmlFormattedDisplayRequestMsgWrapper", propOrder = {
43 "classification",
44 "plugintype",
45 "classname",
46 "parameters"
47 })
48 public class GetPluginHtmlFormattedDisplayRequestMsgWrapper
49 implements Serializable
50 {
51
52 private final static long serialVersionUID = 1L;
53 @XmlElement(required = true, nillable = true)
54 protected SecurityWrapper classification;
55 @XmlElement(required = true, nillable = true)
56 protected String plugintype;
57 @XmlElement(required = true, nillable = true)
58 protected String classname;
59 @XmlElement(required = true, nillable = true)
60 protected List<NameValuePair> parameters;
61
62
63
64
65
66
67
68
69
70 public SecurityWrapper getClassification() {
71 return classification;
72 }
73
74
75
76
77
78
79
80
81
82 public void setClassification(SecurityWrapper value) {
83 this.classification = value;
84 }
85
86 public boolean isSetClassification() {
87 return (this.classification!= null);
88 }
89
90
91
92
93
94
95
96
97
98 public String getPlugintype() {
99 return plugintype;
100 }
101
102
103
104
105
106
107
108
109
110 public void setPlugintype(String value) {
111 this.plugintype = value;
112 }
113
114 public boolean isSetPlugintype() {
115 return (this.plugintype!= null);
116 }
117
118
119
120
121
122
123
124
125
126 public String getClassname() {
127 return classname;
128 }
129
130
131
132
133
134
135
136
137
138 public void setClassname(String value) {
139 this.classname = value;
140 }
141
142 public boolean isSetClassname() {
143 return (this.classname!= null);
144 }
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168 public List<NameValuePair> getParameters() {
169 if (parameters == null) {
170 parameters = new ArrayList<NameValuePair>();
171 }
172 return this.parameters;
173 }
174
175 public boolean isSetParameters() {
176 return ((this.parameters!= null)&&(!this.parameters.isEmpty()));
177 }
178
179 public void unsetParameters() {
180 this.parameters = null;
181 }
182
183 }