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
42 @XmlAccessorType(XmlAccessType.FIELD)
43 @XmlType(name = "GetPluginInformationResponseMsg", propOrder = {
44 "classification",
45 "help",
46 "displayName",
47 "requiredParameter",
48 "optionalParameter"
49 })
50 public class GetPluginInformationResponseMsg
51 implements Serializable
52 {
53
54 private final static long serialVersionUID = 1L;
55 @XmlElement(required = true, nillable = true)
56 protected SecurityWrapper classification;
57 @XmlElement(required = true, nillable = true)
58 protected String help;
59 @XmlElement(required = true, nillable = true)
60 protected String displayName;
61 @XmlElement(required = false, nillable = true)
62 protected List<NameValuePair> requiredParameter;
63 @XmlElement(required = false, nillable = true)
64 protected List<NameValuePair> optionalParameter;
65
66
67
68
69
70
71
72
73
74 public SecurityWrapper getClassification() {
75 return classification;
76 }
77
78
79
80
81
82
83
84
85
86 public void setClassification(SecurityWrapper value) {
87 this.classification = value;
88 }
89
90 public boolean isSetClassification() {
91 return (this.classification!= null);
92 }
93
94
95
96
97
98
99
100
101
102 public String getHelp() {
103 return help;
104 }
105
106
107
108
109
110
111
112
113
114 public void setHelp(String value) {
115 this.help = value;
116 }
117
118 public boolean isSetHelp() {
119 return (this.help!= null);
120 }
121
122
123
124
125
126
127
128
129
130 public String getDisplayName() {
131 return displayName;
132 }
133
134
135
136
137
138
139
140
141
142 public void setDisplayName(String value) {
143 this.displayName = value;
144 }
145
146 public boolean isSetDisplayName() {
147 return (this.displayName!= null);
148 }
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172 public List<NameValuePair> getRequiredParameter() {
173 if (requiredParameter == null) {
174 requiredParameter = new ArrayList<NameValuePair>();
175 }
176 return this.requiredParameter;
177 }
178
179 public boolean isSetRequiredParameter() {
180 return ((this.requiredParameter!= null)&&(!this.requiredParameter.isEmpty()));
181 }
182
183 public void unsetRequiredParameter() {
184 this.requiredParameter = null;
185 }
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209 public List<NameValuePair> getOptionalParameter() {
210 if (optionalParameter == null) {
211 optionalParameter = new ArrayList<NameValuePair>();
212 }
213 return this.optionalParameter;
214 }
215
216 public boolean isSetOptionalParameter() {
217 return ((this.optionalParameter!= null)&&(!this.optionalParameter.isEmpty()));
218 }
219
220 public void unsetOptionalParameter() {
221 this.optionalParameter = null;
222 }
223
224 }