1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.kpme.pm.api.positionresponsibility;
17
18 import java.io.Serializable;
19 import java.math.BigDecimal;
20 import java.util.Collection;
21 import javax.xml.bind.annotation.XmlAccessType;
22 import javax.xml.bind.annotation.XmlAccessorType;
23 import javax.xml.bind.annotation.XmlAnyElement;
24 import javax.xml.bind.annotation.XmlElement;
25 import javax.xml.bind.annotation.XmlRootElement;
26 import javax.xml.bind.annotation.XmlType;
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.kuali.rice.location.api.campus.Campus;
32 import org.w3c.dom.Element;
33
34 @XmlRootElement(name = PositionResponsibility.Constants.ROOT_ELEMENT_NAME)
35 @XmlAccessorType(XmlAccessType.NONE)
36 @XmlType(name = PositionResponsibility.Constants.TYPE_NAME, propOrder = {
37 PositionResponsibility.Elements.CAMPUS_OBJ,
38 PositionResponsibility.Elements.POSITION_RESPONSIBILITY_OPTION,
39 PositionResponsibility.Elements.PERCENT_TIME,
40 PositionResponsibility.Elements.POSITION_RESPONSIBILITY_ID,
41 PositionResponsibility.Elements.HR_POSITION_ID,
42 PositionResponsibility.Elements.EFFECTIVE_LOCAL_DATE_OF_OWNER,
43 CoreConstants.CommonElements.VERSION_NUMBER,
44 CoreConstants.CommonElements.OBJECT_ID,
45 CoreConstants.CommonElements.FUTURE_ELEMENTS
46 })
47 public final class PositionResponsibility extends AbstractDataTransferObject implements PositionResponsibilityContract {
48
49 private static final long serialVersionUID = 9087038146966583259L;
50
51 @XmlElement(name = Elements.CAMPUS_OBJ, required = false)
52 private final Campus campusObj;
53 @XmlElement(name = Elements.POSITION_RESPONSIBILITY_OPTION, required = false)
54 private final String positionResponsibilityOption;
55 @XmlElement(name = Elements.PERCENT_TIME, required = false)
56 private final BigDecimal percentTime;
57 @XmlElement(name = Elements.POSITION_RESPONSIBILITY_ID, required = false)
58 private final String positionResponsibilityId;
59 @XmlElement(name = Elements.HR_POSITION_ID, required = false)
60 private final String hrPositionId;
61 @XmlElement(name = Elements.EFFECTIVE_LOCAL_DATE_OF_OWNER, required = false)
62 private final LocalDate effectiveLocalDateOfOwner;
63 @XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false)
64 private final Long versionNumber;
65 @XmlElement(name = CoreConstants.CommonElements.OBJECT_ID, required = false)
66 private final String objectId;
67 @XmlAnyElement
68 private final Collection<Element> _futureElements = null;
69
70
71
72
73
74 private PositionResponsibility() {
75 this.campusObj = null;
76 this.positionResponsibilityOption = null;
77 this.percentTime = null;
78 this.positionResponsibilityId = null;
79 this.hrPositionId = null;
80 this.effectiveLocalDateOfOwner = null;
81 this.versionNumber = null;
82 this.objectId = null;
83 }
84
85 private PositionResponsibility(Builder builder) {
86 this.campusObj = builder.getCampusObj() == null ? null : builder.getCampusObj().build();
87 this.positionResponsibilityOption = builder.getPositionResponsibilityOption();
88 this.percentTime = builder.getPercentTime();
89 this.positionResponsibilityId = builder.getPositionResponsibilityId();
90 this.hrPositionId = builder.getHrPositionId();
91 this.effectiveLocalDateOfOwner = builder.getEffectiveLocalDateOfOwner();
92 this.versionNumber = builder.getVersionNumber();
93 this.objectId = builder.getObjectId();
94 }
95
96 @Override
97 public Campus getCampusObj() {
98 return this.campusObj;
99 }
100
101 @Override
102 public String getPositionResponsibilityOption() {
103 return this.positionResponsibilityOption;
104 }
105
106 @Override
107 public BigDecimal getPercentTime() {
108 return this.percentTime;
109 }
110
111 @Override
112 public String getPositionResponsibilityId() {
113 return this.positionResponsibilityId;
114 }
115
116 @Override
117 public String getHrPositionId() {
118 return this.hrPositionId;
119 }
120
121 @Override
122 public LocalDate getEffectiveLocalDateOfOwner() {
123 return this.effectiveLocalDateOfOwner;
124 }
125
126 @Override
127 public Long getVersionNumber() {
128 return this.versionNumber;
129 }
130
131 @Override
132 public String getObjectId() {
133 return this.objectId;
134 }
135
136
137
138
139
140
141 public final static class Builder implements Serializable, PositionResponsibilityContract, ModelBuilder {
142
143 private static final long serialVersionUID = 9129941203942056769L;
144
145 private Campus.Builder campusObj;
146 private String positionResponsibilityOption;
147 private BigDecimal percentTime;
148 private String positionResponsibilityId;
149 private String hrPositionId;
150 private LocalDate effectiveLocalDateOfOwner;
151 private Long versionNumber;
152 private String objectId;
153
154 private Builder() {
155
156 }
157
158 public static Builder create() {
159
160 return new Builder();
161 }
162
163 public static Builder create(PositionResponsibilityContract contract) {
164 if (contract == null) {
165 throw new IllegalArgumentException("contract was null");
166 }
167
168 Builder builder = create();
169 builder.setCampusObj(builder.getCampusObj() == null ? null : Campus.Builder.create(builder.getCampusObj().build()));
170 builder.setPositionResponsibilityOption(contract.getPositionResponsibilityOption());
171 builder.setPercentTime(contract.getPercentTime());
172 builder.setPositionResponsibilityId(contract.getPositionResponsibilityId());
173 builder.setHrPositionId(contract.getHrPositionId());
174 builder.setEffectiveLocalDateOfOwner(contract.getEffectiveLocalDateOfOwner());
175 builder.setVersionNumber(contract.getVersionNumber());
176 builder.setObjectId(contract.getObjectId());
177 return builder;
178 }
179
180 public PositionResponsibility build() {
181 return new PositionResponsibility(this);
182 }
183
184 @Override
185 public Campus.Builder getCampusObj() {
186 return this.campusObj;
187 }
188
189 @Override
190 public String getPositionResponsibilityOption() {
191 return this.positionResponsibilityOption;
192 }
193
194 @Override
195 public BigDecimal getPercentTime() {
196 return this.percentTime;
197 }
198
199 @Override
200 public String getPositionResponsibilityId() {
201 return this.positionResponsibilityId;
202 }
203
204 @Override
205 public String getHrPositionId() {
206 return this.hrPositionId;
207 }
208
209 @Override
210 public LocalDate getEffectiveLocalDateOfOwner() {
211 return this.effectiveLocalDateOfOwner;
212 }
213
214 @Override
215 public Long getVersionNumber() {
216 return this.versionNumber;
217 }
218
219 @Override
220 public String getObjectId() {
221 return this.objectId;
222 }
223
224 public void setCampusObj(Campus.Builder campusObj) {
225
226 this.campusObj = campusObj;
227 }
228
229 public void setPositionResponsibilityOption(String positionResponsibilityOption) {
230
231 this.positionResponsibilityOption = positionResponsibilityOption;
232 }
233
234 public void setPercentTime(BigDecimal percentTime) {
235
236 this.percentTime = percentTime;
237 }
238
239 public void setPositionResponsibilityId(String positionResponsibilityId) {
240
241 this.positionResponsibilityId = positionResponsibilityId;
242 }
243
244 public void setHrPositionId(String hrPositionId) {
245
246 this.hrPositionId = hrPositionId;
247 }
248
249 public void setEffectiveLocalDateOfOwner(LocalDate effectiveLocalDateOfOwner) {
250
251 this.effectiveLocalDateOfOwner = effectiveLocalDateOfOwner;
252 }
253
254 public void setVersionNumber(Long versionNumber) {
255
256 this.versionNumber = versionNumber;
257 }
258
259 public void setObjectId(String objectId) {
260
261 this.objectId = objectId;
262 }
263
264 }
265
266
267
268
269
270
271 static class Constants {
272
273 final static String ROOT_ELEMENT_NAME = "positionResponsibility";
274 final static String TYPE_NAME = "PositionResponsibilityType";
275
276 }
277
278
279
280
281
282
283 static class Elements {
284
285 final static String CAMPUS_OBJ = "campusObj";
286 final static String POSITION_RESPONSIBILITY_OPTION = "positionResponsibilityOption";
287 final static String PERCENT_TIME = "percentTime";
288 final static String POSITION_RESPONSIBILITY_ID = "positionResponsibilityId";
289 final static String HR_POSITION_ID = "hrPositionId";
290 final static String EFFECTIVE_LOCAL_DATE_OF_OWNER = "effectiveLocalDateOfOwner";
291
292 }
293
294 }