1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.kpme.core.api.departmentaffiliation;
17
18 import java.io.Serializable;
19 import java.util.Collection;
20 import javax.xml.bind.annotation.XmlAccessType;
21 import javax.xml.bind.annotation.XmlAccessorType;
22 import javax.xml.bind.annotation.XmlAnyElement;
23 import javax.xml.bind.annotation.XmlElement;
24 import javax.xml.bind.annotation.XmlRootElement;
25 import javax.xml.bind.annotation.XmlType;
26 import org.joda.time.DateTime;
27 import org.joda.time.LocalDate;
28 import org.kuali.rice.core.api.CoreConstants;
29 import org.kuali.rice.core.api.mo.AbstractDataTransferObject;
30 import org.kuali.rice.core.api.mo.ModelBuilder;
31 import org.w3c.dom.Element;
32
33 @XmlRootElement(name = DepartmentAffiliation.Constants.ROOT_ELEMENT_NAME)
34 @XmlAccessorType(XmlAccessType.NONE)
35 @XmlType(name = DepartmentAffiliation.Constants.TYPE_NAME, propOrder = {
36 DepartmentAffiliation.Elements.DEPT_AFFL_TYPE,
37 DepartmentAffiliation.Elements.HR_DEPT_AFFL_ID,
38 DepartmentAffiliation.Elements.PRIMARY_INDICATOR,
39 CoreConstants.CommonElements.VERSION_NUMBER,
40 CoreConstants.CommonElements.OBJECT_ID,
41 DepartmentAffiliation.Elements.ACTIVE,
42 DepartmentAffiliation.Elements.ID,
43 DepartmentAffiliation.Elements.EFFECTIVE_LOCAL_DATE,
44 DepartmentAffiliation.Elements.CREATE_TIME,
45 DepartmentAffiliation.Elements.USER_PRINCIPAL_ID,
46 CoreConstants.CommonElements.FUTURE_ELEMENTS
47 })
48 public final class DepartmentAffiliation extends AbstractDataTransferObject implements DepartmentAffiliationContract {
49
50 private static final long serialVersionUID = -8536403714487676667L;
51
52 @XmlElement(name = Elements.DEPT_AFFL_TYPE, required = false)
53 private final String deptAfflType;
54 @XmlElement(name = Elements.HR_DEPT_AFFL_ID, required = false)
55 private final String hrDeptAfflId;
56 @XmlElement(name = Elements.PRIMARY_INDICATOR, required = false)
57 private final boolean primaryIndicator;
58 @XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false)
59 private final Long versionNumber;
60 @XmlElement(name = CoreConstants.CommonElements.OBJECT_ID, required = false)
61 private final String objectId;
62 @XmlElement(name = Elements.ACTIVE, required = false)
63 private final boolean active;
64 @XmlElement(name = Elements.ID, required = false)
65 private final String id;
66 @XmlElement(name = Elements.EFFECTIVE_LOCAL_DATE, required = false)
67 private final LocalDate effectiveLocalDate;
68 @XmlElement(name = Elements.CREATE_TIME, required = false)
69 private final DateTime createTime;
70 @XmlElement(name = Elements.USER_PRINCIPAL_ID, required = false)
71 private final String userPrincipalId;
72 @XmlAnyElement
73 private final Collection<Element> _futureElements = null;
74
75
76
77
78
79 private DepartmentAffiliation() {
80 this.deptAfflType = null;
81 this.hrDeptAfflId = null;
82 this.primaryIndicator = false;
83 this.versionNumber = null;
84 this.objectId = null;
85 this.active = false;
86 this.id = null;
87 this.effectiveLocalDate = null;
88 this.createTime = null;
89 this.userPrincipalId = null;
90 }
91
92 private DepartmentAffiliation(Builder builder) {
93 this.deptAfflType = builder.getDeptAfflType();
94 this.hrDeptAfflId = builder.getHrDeptAfflId();
95 this.primaryIndicator = builder.isPrimaryIndicator();
96 this.versionNumber = builder.getVersionNumber();
97 this.objectId = builder.getObjectId();
98 this.active = builder.isActive();
99 this.id = builder.getId();
100 this.effectiveLocalDate = builder.getEffectiveLocalDate();
101 this.createTime = builder.getCreateTime();
102 this.userPrincipalId = builder.getUserPrincipalId();
103 }
104
105 @Override
106 public String getDeptAfflType() {
107 return this.deptAfflType;
108 }
109
110 @Override
111 public String getHrDeptAfflId() {
112 return this.hrDeptAfflId;
113 }
114
115 @Override
116 public boolean isPrimaryIndicator() {
117 return this.primaryIndicator;
118 }
119
120 @Override
121 public Long getVersionNumber() {
122 return this.versionNumber;
123 }
124
125 @Override
126 public String getObjectId() {
127 return this.objectId;
128 }
129
130 @Override
131 public boolean isActive() {
132 return this.active;
133 }
134
135 @Override
136 public String getId() {
137 return this.id;
138 }
139
140 @Override
141 public LocalDate getEffectiveLocalDate() {
142 return this.effectiveLocalDate;
143 }
144
145 @Override
146 public DateTime getCreateTime() {
147 return this.createTime;
148 }
149
150 @Override
151 public String getUserPrincipalId() {
152 return this.userPrincipalId;
153 }
154
155
156
157
158
159
160 public final static class Builder implements Serializable, DepartmentAffiliationContract, ModelBuilder {
161
162 private static final long serialVersionUID = -4886512382767407566L;
163
164 private String deptAfflType;
165 private String hrDeptAfflId;
166 private boolean primaryIndicator;
167 private Long versionNumber;
168 private String objectId;
169 private boolean active;
170 private String id;
171 private LocalDate effectiveLocalDate;
172 private DateTime createTime;
173 private String userPrincipalId;
174
175 private Builder() {
176
177 }
178
179 public static Builder create() {
180
181 return new Builder();
182 }
183
184 public static Builder create(DepartmentAffiliationContract contract) {
185 if (contract == null) {
186 throw new IllegalArgumentException("contract was null");
187 }
188
189 Builder builder = create();
190 builder.setDeptAfflType(contract.getDeptAfflType());
191 builder.setHrDeptAfflId(contract.getHrDeptAfflId());
192 builder.setPrimaryIndicator(contract.isPrimaryIndicator());
193 builder.setVersionNumber(contract.getVersionNumber());
194 builder.setObjectId(contract.getObjectId());
195 builder.setActive(contract.isActive());
196 builder.setId(contract.getId());
197 builder.setEffectiveLocalDate(contract.getEffectiveLocalDate());
198 builder.setCreateTime(contract.getCreateTime());
199 builder.setUserPrincipalId(contract.getUserPrincipalId());
200 return builder;
201 }
202
203 public DepartmentAffiliation build() {
204 return new DepartmentAffiliation(this);
205 }
206
207 @Override
208 public String getDeptAfflType() {
209 return this.deptAfflType;
210 }
211
212 @Override
213 public String getHrDeptAfflId() {
214 return this.hrDeptAfflId;
215 }
216
217 @Override
218 public boolean isPrimaryIndicator() {
219 return this.primaryIndicator;
220 }
221
222 @Override
223 public Long getVersionNumber() {
224 return this.versionNumber;
225 }
226
227 @Override
228 public String getObjectId() {
229 return this.objectId;
230 }
231
232 @Override
233 public boolean isActive() {
234 return this.active;
235 }
236
237 @Override
238 public String getId() {
239 return this.id;
240 }
241
242 @Override
243 public LocalDate getEffectiveLocalDate() {
244 return this.effectiveLocalDate;
245 }
246
247 @Override
248 public DateTime getCreateTime() {
249 return this.createTime;
250 }
251
252 @Override
253 public String getUserPrincipalId() {
254 return this.userPrincipalId;
255 }
256
257 public void setDeptAfflType(String deptAfflType) {
258
259 this.deptAfflType = deptAfflType;
260 }
261
262 public void setHrDeptAfflId(String hrDeptAfflId) {
263
264 this.hrDeptAfflId = hrDeptAfflId;
265 }
266
267 public void setPrimaryIndicator(boolean primaryIndicator) {
268
269 this.primaryIndicator = primaryIndicator;
270 }
271
272 public void setVersionNumber(Long versionNumber) {
273
274 this.versionNumber = versionNumber;
275 }
276
277 public void setObjectId(String objectId) {
278
279 this.objectId = objectId;
280 }
281
282 public void setActive(boolean active) {
283
284 this.active = active;
285 }
286
287 public void setId(String id) {
288
289 this.id = id;
290 }
291
292 public void setEffectiveLocalDate(LocalDate effectiveLocalDate) {
293
294 this.effectiveLocalDate = effectiveLocalDate;
295 }
296
297 public void setCreateTime(DateTime createTime) {
298
299 this.createTime = createTime;
300 }
301
302 public void setUserPrincipalId(String userPrincipalId) {
303
304 this.userPrincipalId = userPrincipalId;
305 }
306
307 }
308
309
310
311
312
313
314 static class Constants {
315
316 final static String ROOT_ELEMENT_NAME = "departmentAffiliation";
317 final static String TYPE_NAME = "DepartmentAffiliationType";
318
319 }
320
321
322
323
324
325
326 static class Elements {
327
328 final static String DEPT_AFFL_TYPE = "deptAfflType";
329 final static String HR_DEPT_AFFL_ID = "hrDeptAfflId";
330 final static String PRIMARY_INDICATOR = "primaryIndicator";
331 final static String ACTIVE = "active";
332 final static String ID = "id";
333 final static String EFFECTIVE_LOCAL_DATE = "effectiveLocalDate";
334 final static String CREATE_TIME = "createTime";
335 final static String USER_PRINCIPAL_ID = "userPrincipalId";
336
337 }
338
339 }
340