View Javadoc
1   /**
2    * Copyright 2004-2015 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.kpme.pm.api.positionresponsibilityoption;
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 = PositionResponsibilityOption.Constants.ROOT_ELEMENT_NAME)
34  @XmlAccessorType(XmlAccessType.NONE)
35  @XmlType(name = PositionResponsibilityOption.Constants.TYPE_NAME, propOrder = {
36      PositionResponsibilityOption.Elements.PR_DESCRIPTION,
37      PositionResponsibilityOption.Elements.PR_OPTION_ID,
38      PositionResponsibilityOption.Elements.PR_OPTION_NAME,
39      CoreConstants.CommonElements.VERSION_NUMBER,
40      CoreConstants.CommonElements.OBJECT_ID,
41      PositionResponsibilityOption.Elements.ACTIVE,
42      PositionResponsibilityOption.Elements.ID,
43      PositionResponsibilityOption.Elements.EFFECTIVE_LOCAL_DATE,
44      PositionResponsibilityOption.Elements.CREATE_TIME,
45      PositionResponsibilityOption.Elements.USER_PRINCIPAL_ID,
46      CoreConstants.CommonElements.FUTURE_ELEMENTS
47  })
48  public final class PositionResponsibilityOption
49      extends AbstractDataTransferObject
50      implements PositionResponsibilityOptionContract
51  {
52  
53      @XmlElement(name = Elements.PR_DESCRIPTION, required = false)
54      private final String prDescription;
55      @XmlElement(name = Elements.PR_OPTION_ID, required = false)
56      private final String prOptionId;
57      @XmlElement(name = Elements.PR_OPTION_NAME, required = false)
58      private final String prOptionName;
59      @XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false)
60      private final Long versionNumber;
61      @XmlElement(name = CoreConstants.CommonElements.OBJECT_ID, required = false)
62      private final String objectId;
63      @XmlElement(name = Elements.ACTIVE, required = false)
64      private final boolean active;
65      @XmlElement(name = Elements.ID, required = false)
66      private final String id;
67      @XmlElement(name = Elements.EFFECTIVE_LOCAL_DATE, required = false)
68      private final LocalDate effectiveLocalDate;
69      @XmlElement(name = Elements.CREATE_TIME, required = false)
70      private final DateTime createTime;
71      @XmlElement(name = Elements.USER_PRINCIPAL_ID, required = false)
72      private final String userPrincipalId;
73      @SuppressWarnings("unused")
74      @XmlAnyElement
75      private final Collection<Element> _futureElements = null;
76  
77      /**
78       * Private constructor used only by JAXB.
79       * 
80       */
81      private PositionResponsibilityOption() {
82          this.prDescription = null;
83          this.prOptionId = null;
84          this.prOptionName = null;
85          this.versionNumber = null;
86          this.objectId = null;
87          this.active = false;
88          this.id = null;
89          this.effectiveLocalDate = null;
90          this.createTime = null;
91          this.userPrincipalId = null;
92      }
93  
94      private PositionResponsibilityOption(Builder builder) {
95          this.prDescription = builder.getPrDescription();
96          this.prOptionId = builder.getPrOptionId();
97          this.prOptionName = builder.getPrOptionName();
98          this.versionNumber = builder.getVersionNumber();
99          this.objectId = builder.getObjectId();
100         this.active = builder.isActive();
101         this.id = builder.getId();
102         this.effectiveLocalDate = builder.getEffectiveLocalDate();
103         this.createTime = builder.getCreateTime();
104         this.userPrincipalId = builder.getUserPrincipalId();
105     }
106 
107     @Override
108     public String getPrDescription() {
109         return this.prDescription;
110     }
111 
112     @Override
113     public String getPrOptionId() {
114         return this.prOptionId;
115     }
116 
117     @Override
118     public String getPrOptionName() {
119         return this.prOptionName;
120     }
121 
122     @Override
123     public Long getVersionNumber() {
124         return this.versionNumber;
125     }
126 
127     @Override
128     public String getObjectId() {
129         return this.objectId;
130     }
131 
132     @Override
133     public boolean isActive() {
134         return this.active;
135     }
136 
137     @Override
138     public String getId() {
139         return this.id;
140     }
141 
142     @Override
143     public LocalDate getEffectiveLocalDate() {
144         return this.effectiveLocalDate;
145     }
146 
147     @Override
148     public DateTime getCreateTime() {
149         return this.createTime;
150     }
151 
152     @Override
153     public String getUserPrincipalId() {
154         return this.userPrincipalId;
155     }
156 
157 
158     /**
159      * A builder which can be used to construct {@link PositionResponsibilityOption} instances.  Enforces the constraints of the {@link PositionResponsibilityOptionContract}.
160      * 
161      */
162     public final static class Builder
163         implements Serializable, PositionResponsibilityOptionContract, ModelBuilder
164     {
165 
166         private String prDescription;
167         private String prOptionId;
168         private String prOptionName;
169         private Long versionNumber;
170         private String objectId;
171         private boolean active;
172         private String id;
173         private LocalDate effectiveLocalDate;
174         private DateTime createTime;
175         private String userPrincipalId;
176 
177         private Builder() {
178             // TODO modify this constructor as needed to pass any required values and invoke the appropriate 'setter' methods
179         }
180 
181         public static Builder create() {
182 
183             return new Builder();
184         }
185 
186         public static Builder create(PositionResponsibilityOptionContract contract) {
187             if (contract == null) {
188                 throw new IllegalArgumentException("contract was null");
189             }
190 
191             Builder builder = create();
192             builder.setPrDescription(contract.getPrDescription());
193             builder.setPrOptionId(contract.getPrOptionId());
194             builder.setPrOptionName(contract.getPrOptionName());
195             builder.setVersionNumber(contract.getVersionNumber());
196             builder.setObjectId(contract.getObjectId());
197             builder.setActive(contract.isActive());
198             builder.setId(contract.getId());
199             builder.setEffectiveLocalDate(contract.getEffectiveLocalDate());
200             builder.setCreateTime(contract.getCreateTime());
201             builder.setUserPrincipalId(contract.getUserPrincipalId());
202             return builder;
203         }
204 
205         public PositionResponsibilityOption build() {
206             return new PositionResponsibilityOption(this);
207         }
208 
209         @Override
210         public String getPrDescription() {
211             return this.prDescription;
212         }
213 
214         @Override
215         public String getPrOptionId() {
216             return this.prOptionId;
217         }
218 
219         @Override
220         public String getPrOptionName() {
221             return this.prOptionName;
222         }
223 
224         @Override
225         public Long getVersionNumber() {
226             return this.versionNumber;
227         }
228 
229         @Override
230         public String getObjectId() {
231             return this.objectId;
232         }
233 
234         @Override
235         public boolean isActive() {
236             return this.active;
237         }
238 
239         @Override
240         public String getId() {
241             return this.id;
242         }
243 
244         @Override
245         public LocalDate getEffectiveLocalDate() {
246             return this.effectiveLocalDate;
247         }
248 
249         @Override
250         public DateTime getCreateTime() {
251             return this.createTime;
252         }
253 
254         @Override
255         public String getUserPrincipalId() {
256             return this.userPrincipalId;
257         }
258 
259         public void setPrDescription(String prDescription) {
260 
261             this.prDescription = prDescription;
262         }
263 
264         public void setPrOptionId(String prOptionId) {
265 
266             this.prOptionId = prOptionId;
267         }
268 
269         public void setPrOptionName(String prOptionName) {
270 
271             this.prOptionName = prOptionName;
272         }
273 
274         public void setVersionNumber(Long versionNumber) {
275 
276             this.versionNumber = versionNumber;
277         }
278 
279         public void setObjectId(String objectId) {
280 
281             this.objectId = objectId;
282         }
283 
284         public void setActive(boolean active) {
285 
286             this.active = active;
287         }
288 
289         public void setId(String id) {
290 
291             this.id = id;
292         }
293 
294         public void setEffectiveLocalDate(LocalDate effectiveLocalDate) {
295 
296             this.effectiveLocalDate = effectiveLocalDate;
297         }
298 
299         public void setCreateTime(DateTime createTime) {
300 
301             this.createTime = createTime;
302         }
303 
304         public void setUserPrincipalId(String userPrincipalId) {
305 
306             this.userPrincipalId = userPrincipalId;
307         }
308 
309     }
310 
311 
312     /**
313      * Defines some internal constants used on this class.
314      * 
315      */
316     static class Constants {
317 
318         final static String ROOT_ELEMENT_NAME = "positionResponsibilityOption";
319         final static String TYPE_NAME = "PositionResponsibilityOptionType";
320 
321     }
322 
323 
324     /**
325      * A private class which exposes constants which define the XML element names to use when this object is marshalled to XML.
326      * 
327      */
328     static class Elements {
329 
330         final static String PR_DESCRIPTION = "prDescription";
331         final static String PR_OPTION_ID = "prOptionId";
332         final static String PR_OPTION_NAME = "prOptionName";
333         final static String ACTIVE = "active";
334         final static String ID = "id";
335         final static String EFFECTIVE_LOCAL_DATE = "effectiveLocalDate";
336         final static String CREATE_TIME = "createTime";
337         final static String USER_PRINCIPAL_ID = "userPrincipalId";
338 
339     }
340 
341 }
342