-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathAccountPasswordData.java
More file actions
317 lines (277 loc) · 9.59 KB
/
Copy pathAccountPasswordData.java
File metadata and controls
317 lines (277 loc) · 9.59 KB
1
2
3
4
5
6
7
8
9
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
// This file was generated by Mendix Studio Pro.
//
// WARNING: Code you write here will be lost the next time you deploy the project.
package administration.proxies;
public class AccountPasswordData
{
private final com.mendix.systemwideinterfaces.core.IMendixObject accountPasswordDataMendixObject;
private final com.mendix.systemwideinterfaces.core.IContext context;
/**
* Internal name of this entity
*/
public static final java.lang.String entityName = "Administration.AccountPasswordData";
/**
* Enum describing members of this entity
*/
public enum MemberNames
{
OldPassword("OldPassword"),
NewPassword("NewPassword"),
ConfirmPassword("ConfirmPassword"),
AccountPasswordData_Account("Administration.AccountPasswordData_Account");
private java.lang.String metaName;
MemberNames(java.lang.String s)
{
metaName = s;
}
@java.lang.Override
public java.lang.String toString()
{
return metaName;
}
}
public AccountPasswordData(com.mendix.systemwideinterfaces.core.IContext context)
{
this(context, com.mendix.core.Core.instantiate(context, "Administration.AccountPasswordData"));
}
protected AccountPasswordData(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixObject accountPasswordDataMendixObject)
{
if (accountPasswordDataMendixObject == null)
throw new java.lang.IllegalArgumentException("The given object cannot be null.");
if (!com.mendix.core.Core.isSubClassOf("Administration.AccountPasswordData", accountPasswordDataMendixObject.getType()))
throw new java.lang.IllegalArgumentException("The given object is not a Administration.AccountPasswordData");
this.accountPasswordDataMendixObject = accountPasswordDataMendixObject;
this.context = context;
}
/**
* @deprecated Use 'AccountPasswordData.load(IContext, IMendixIdentifier)' instead.
*/
@java.lang.Deprecated
public static administration.proxies.AccountPasswordData initialize(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixIdentifier mendixIdentifier) throws com.mendix.core.CoreException
{
return administration.proxies.AccountPasswordData.load(context, mendixIdentifier);
}
/**
* Initialize a proxy using context (recommended). This context will be used for security checking when the get- and set-methods without context parameters are called.
* The get- and set-methods with context parameter should be used when for instance sudo access is necessary (IContext.createSudoClone() can be used to obtain sudo access).
*/
public static administration.proxies.AccountPasswordData initialize(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixObject mendixObject)
{
return new administration.proxies.AccountPasswordData(context, mendixObject);
}
public static administration.proxies.AccountPasswordData load(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixIdentifier mendixIdentifier) throws com.mendix.core.CoreException
{
com.mendix.systemwideinterfaces.core.IMendixObject mendixObject = com.mendix.core.Core.retrieveId(context, mendixIdentifier);
return administration.proxies.AccountPasswordData.initialize(context, mendixObject);
}
/**
* Commit the changes made on this proxy object.
*/
public final void commit() throws com.mendix.core.CoreException
{
com.mendix.core.Core.commit(context, getMendixObject());
}
/**
* Commit the changes made on this proxy object using the specified context.
*/
public final void commit(com.mendix.systemwideinterfaces.core.IContext context) throws com.mendix.core.CoreException
{
com.mendix.core.Core.commit(context, getMendixObject());
}
/**
* Delete the object.
*/
public final void delete()
{
com.mendix.core.Core.delete(context, getMendixObject());
}
/**
* Delete the object using the specified context.
*/
public final void delete(com.mendix.systemwideinterfaces.core.IContext context)
{
com.mendix.core.Core.delete(context, getMendixObject());
}
/**
* @return value of OldPassword
*/
public final java.lang.String getOldPassword()
{
return getOldPassword(getContext());
}
/**
* @param context
* @return value of OldPassword
*/
public final java.lang.String getOldPassword(com.mendix.systemwideinterfaces.core.IContext context)
{
return (java.lang.String) getMendixObject().getValue(context, MemberNames.OldPassword.toString());
}
/**
* Set value of OldPassword
* @param oldpassword
*/
public final void setOldPassword(java.lang.String oldpassword)
{
setOldPassword(getContext(), oldpassword);
}
/**
* Set value of OldPassword
* @param context
* @param oldpassword
*/
public final void setOldPassword(com.mendix.systemwideinterfaces.core.IContext context, java.lang.String oldpassword)
{
getMendixObject().setValue(context, MemberNames.OldPassword.toString(), oldpassword);
}
/**
* @return value of NewPassword
*/
public final java.lang.String getNewPassword()
{
return getNewPassword(getContext());
}
/**
* @param context
* @return value of NewPassword
*/
public final java.lang.String getNewPassword(com.mendix.systemwideinterfaces.core.IContext context)
{
return (java.lang.String) getMendixObject().getValue(context, MemberNames.NewPassword.toString());
}
/**
* Set value of NewPassword
* @param newpassword
*/
public final void setNewPassword(java.lang.String newpassword)
{
setNewPassword(getContext(), newpassword);
}
/**
* Set value of NewPassword
* @param context
* @param newpassword
*/
public final void setNewPassword(com.mendix.systemwideinterfaces.core.IContext context, java.lang.String newpassword)
{
getMendixObject().setValue(context, MemberNames.NewPassword.toString(), newpassword);
}
/**
* @return value of ConfirmPassword
*/
public final java.lang.String getConfirmPassword()
{
return getConfirmPassword(getContext());
}
/**
* @param context
* @return value of ConfirmPassword
*/
public final java.lang.String getConfirmPassword(com.mendix.systemwideinterfaces.core.IContext context)
{
return (java.lang.String) getMendixObject().getValue(context, MemberNames.ConfirmPassword.toString());
}
/**
* Set value of ConfirmPassword
* @param confirmpassword
*/
public final void setConfirmPassword(java.lang.String confirmpassword)
{
setConfirmPassword(getContext(), confirmpassword);
}
/**
* Set value of ConfirmPassword
* @param context
* @param confirmpassword
*/
public final void setConfirmPassword(com.mendix.systemwideinterfaces.core.IContext context, java.lang.String confirmpassword)
{
getMendixObject().setValue(context, MemberNames.ConfirmPassword.toString(), confirmpassword);
}
/**
* @return value of AccountPasswordData_Account
*/
public final administration.proxies.Account getAccountPasswordData_Account() throws com.mendix.core.CoreException
{
return getAccountPasswordData_Account(getContext());
}
/**
* @param context
* @return value of AccountPasswordData_Account
*/
public final administration.proxies.Account getAccountPasswordData_Account(com.mendix.systemwideinterfaces.core.IContext context) throws com.mendix.core.CoreException
{
administration.proxies.Account result = null;
com.mendix.systemwideinterfaces.core.IMendixIdentifier identifier = getMendixObject().getValue(context, MemberNames.AccountPasswordData_Account.toString());
if (identifier != null)
result = administration.proxies.Account.load(context, identifier);
return result;
}
/**
* Set value of AccountPasswordData_Account
* @param accountpassworddata_account
*/
public final void setAccountPasswordData_Account(administration.proxies.Account accountpassworddata_account)
{
setAccountPasswordData_Account(getContext(), accountpassworddata_account);
}
/**
* Set value of AccountPasswordData_Account
* @param context
* @param accountpassworddata_account
*/
public final void setAccountPasswordData_Account(com.mendix.systemwideinterfaces.core.IContext context, administration.proxies.Account accountpassworddata_account)
{
if (accountpassworddata_account == null)
getMendixObject().setValue(context, MemberNames.AccountPasswordData_Account.toString(), null);
else
getMendixObject().setValue(context, MemberNames.AccountPasswordData_Account.toString(), accountpassworddata_account.getMendixObject().getId());
}
/**
* @return the IMendixObject instance of this proxy for use in the Core interface.
*/
public final com.mendix.systemwideinterfaces.core.IMendixObject getMendixObject()
{
return accountPasswordDataMendixObject;
}
/**
* @return the IContext instance of this proxy, or null if no IContext instance was specified at initialization.
*/
public final com.mendix.systemwideinterfaces.core.IContext getContext()
{
return context;
}
@java.lang.Override
public boolean equals(Object obj)
{
if (obj == this)
return true;
if (obj != null && getClass().equals(obj.getClass()))
{
final administration.proxies.AccountPasswordData that = (administration.proxies.AccountPasswordData) obj;
return getMendixObject().equals(that.getMendixObject());
}
return false;
}
@java.lang.Override
public int hashCode()
{
return getMendixObject().hashCode();
}
/**
* @return String name of this class
*/
public static java.lang.String getType()
{
return "Administration.AccountPasswordData";
}
/**
* @return String GUID from this object, format: ID_0000000000
* @deprecated Use getMendixObject().getId().toLong() to get a unique identifier for this object.
*/
@java.lang.Deprecated
public java.lang.String getGUID()
{
return "ID_" + getMendixObject().getId().toLong();
}
}