1
2 package org.miloss.fgsms.services.interfaces.policyconfiguration;
3
4 import java.io.Serializable;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlType;
9 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
10
11
12
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 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "SetCredentialsRequestMsg", propOrder = {
42 "classification",
43 "url",
44 "style",
45 "username",
46 "password",
47 "passwordEncrypted"
48 })
49 public class SetCredentialsRequestMsg
50 implements Serializable
51 {
52
53 private final static long serialVersionUID = 1L;
54 @XmlElement(required = true, nillable = true)
55 protected SecurityWrapper classification;
56 @XmlElement(required = true)
57 protected String url;
58 @XmlElement(required = true, defaultValue = "NA")
59 protected TransportAuthenticationStyle style;
60 @XmlElement(required = true)
61 protected String username;
62 @XmlElement(required = true)
63 protected String password;
64 protected boolean passwordEncrypted;
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 getUrl() {
103 return url;
104 }
105
106
107
108
109
110
111
112
113
114 public void setUrl(String value) {
115 this.url = value;
116 }
117
118 public boolean isSetUrl() {
119 return (this.url!= null);
120 }
121
122
123
124
125
126
127
128
129
130 public TransportAuthenticationStyle getStyle() {
131 return style;
132 }
133
134
135
136
137
138
139
140
141
142 public void setStyle(TransportAuthenticationStyle value) {
143 this.style = value;
144 }
145
146 public boolean isSetStyle() {
147 return (this.style!= null);
148 }
149
150
151
152
153
154
155
156
157
158 public String getUsername() {
159 return username;
160 }
161
162
163
164
165
166
167
168
169
170 public void setUsername(String value) {
171 this.username = value;
172 }
173
174 public boolean isSetUsername() {
175 return (this.username!= null);
176 }
177
178
179
180
181
182
183
184
185
186 public String getPassword() {
187 return password;
188 }
189
190
191
192
193
194
195
196
197
198 public void setPassword(String value) {
199 this.password = value;
200 }
201
202 public boolean isSetPassword() {
203 return (this.password!= null);
204 }
205
206
207
208
209
210 public boolean isPasswordEncrypted() {
211 return passwordEncrypted;
212 }
213
214
215
216
217
218 public void setPasswordEncrypted(boolean value) {
219 this.passwordEncrypted = value;
220 }
221
222 public boolean isSetPasswordEncrypted() {
223 return true;
224 }
225
226 }