View Javadoc

1   package org.kuali.ole.patron.api;
2   
3   import org.apache.commons.collections.CollectionUtils;
4   import org.apache.commons.lang.StringUtils;
5   import org.kuali.api.jaxb.DateAdapter;
6   import org.kuali.rice.core.api.CoreConstants;
7   import org.kuali.rice.core.api.mo.AbstractDataTransferObject;
8   import org.kuali.rice.core.api.mo.ModelBuilder;
9   import org.kuali.rice.kim.api.KimConstants;
10  import org.kuali.rice.kim.api.identity.address.EntityAddress;
11  import org.kuali.rice.kim.api.identity.address.EntityAddressContract;
12  import org.kuali.rice.kim.api.identity.affiliation.EntityAffiliation;
13  import org.kuali.rice.kim.api.identity.affiliation.EntityAffiliationContract;
14  import org.kuali.rice.kim.api.identity.affiliation.EntityAffiliationType;
15  import org.kuali.rice.kim.api.identity.affiliation.EntityAffiliationTypeContract;
16  import org.kuali.rice.kim.api.identity.email.EntityEmail;
17  import org.kuali.rice.kim.api.identity.email.EntityEmailContract;
18  import org.kuali.rice.kim.api.identity.employment.EntityEmployment;
19  import org.kuali.rice.kim.api.identity.employment.EntityEmploymentContract;
20  import org.kuali.rice.kim.api.identity.entity.Entity;
21  import org.kuali.rice.kim.api.identity.name.EntityName;
22  import org.kuali.rice.kim.api.identity.phone.EntityPhone;
23  import org.kuali.rice.kim.api.identity.phone.EntityPhoneContract;
24  import org.kuali.rice.kim.impl.identity.affiliation.EntityAffiliationBo;
25  import org.kuali.rice.kim.impl.identity.affiliation.EntityAffiliationTypeBo;
26  import org.kuali.rice.kim.impl.identity.employment.EntityEmploymentBo;
27  import org.w3c.dom.Element;
28  
29  import javax.xml.bind.annotation.*;
30  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
31  import java.io.Serializable;
32  import java.util.ArrayList;
33  import java.util.Collection;
34  import java.util.Date;
35  import java.util.List;
36  
37  /**
38   * Created with IntelliJ IDEA.
39   * User: ?
40   * Date: 5/24/12
41   * Time: 8:26 PM
42   * To change this template use File | Settings | File Templates.
43   */
44  @XmlRootElement(name = OlePatronAffiliationDefinition.Constants.ROOT_ELEMENT_NAME)
45  @XmlAccessorType(XmlAccessType.NONE)
46  @XmlType(name = OlePatronAffiliationDefinition.Constants.TYPE_NAME, propOrder = {
47          OlePatronAffiliationDefinition.Elements.ENTITY_AFFILIATION_ID,
48          OlePatronAffiliationDefinition.Elements.ENTITY_ID,
49          OlePatronAffiliationDefinition.Elements.AFFILIATION_TYPE_CODE,
50          OlePatronAffiliationDefinition.Elements.AFFILIATION_TYPE,
51          OlePatronAffiliationDefinition.Elements.CAMPUS_CODE,
52          OlePatronAffiliationDefinition.Elements.EMPLOYMENTS,
53          OlePatronAffiliationDefinition.Elements.DEFAULT_VALUE,
54          OlePatronAffiliationDefinition.Elements.ACTIVE_INDICATOR,
55  
56          CoreConstants.CommonElements.VERSION_NUMBER,
57          CoreConstants.CommonElements.OBJECT_ID,
58          CoreConstants.CommonElements.FUTURE_ELEMENTS
59  })
60  public final class OlePatronAffiliationDefinition extends AbstractDataTransferObject implements OlePatronAffiliationContract{
61  
62      @XmlElement(name = Elements.ENTITY_AFFILIATION_ID, required = false)
63      private final String entityAffiliationId;
64  
65      @XmlElement(name = Elements.ENTITY_ID, required = false)
66      private final String entityId;
67  
68      @XmlElement(name = Elements.AFFILIATION_TYPE_CODE, required = false)
69      private final String affiliationTypeCode;
70  
71      @XmlElement(name = Elements.CAMPUS_CODE, required = false)
72      private final String campusCode;
73  
74      @XmlElement(name = Elements.AFFILIATION_TYPE, required = false)
75      private final EntityAffiliationType affiliationType;
76  
77  
78      @XmlElement(name = Elements.ACTIVE_INDICATOR, required = false)
79      private final boolean active;
80  
81      @XmlElement(name = Elements.DEFAULT_VALUE, required = false)
82      private final boolean defaultValue;
83  
84      @XmlElementWrapper(name = Elements.EMPLOYMENTS, required = false)
85      @XmlElement(name = Elements.EMPLOYMENTS, required = false)
86      private final List<EntityEmployment> employments;
87  
88      @XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false)
89      private final Long versionNumber;
90  
91      @XmlElement(name = CoreConstants.CommonElements.OBJECT_ID, required = false)
92      private final String objectId;
93  
94      @SuppressWarnings("unused")
95      @XmlAnyElement
96      private final Collection<Element> _futureElements = null;
97  
98      public OlePatronAffiliationDefinition() {
99          this.entityAffiliationId = null;
100         this.entityId = null;
101         this.affiliationTypeCode = null;
102         this.campusCode = null;
103         this.affiliationType = null;
104         this.employments = null;
105         this.defaultValue = false;
106         this.active = false;
107 
108         this.versionNumber = null;
109         this.objectId = null;
110     }
111 
112 
113     private OlePatronAffiliationDefinition(Builder builder) {
114         this.entityAffiliationId = builder.getEntityAffiliationId();
115         this.affiliationTypeCode = builder.getAffiliationTypeCode();
116         this.campusCode = builder.getCampusCode();
117         this.defaultValue = builder.isDefaultValue();
118         this.active = builder.isActive();
119         this.entityId = builder.getEntityId();
120 
121 
122         this.employments = new ArrayList<EntityEmployment>();
123         if (!CollectionUtils.isEmpty(builder.getEmployments())) {
124             for (EntityEmployment.Builder employment : builder.getEmployments()) {
125                 this.employments.add(employment.build());
126             }
127         }
128 
129         this.affiliationType = builder.getAffiliationType().build();
130         this.versionNumber = builder.getVersionNumber();
131         this.objectId = builder.getObjectId();
132     }
133 
134     public String getEntityAffiliationId() {
135         return this.entityAffiliationId;
136     }
137 
138     public String getAffiliationTypeCode() {
139         return this.affiliationTypeCode;
140     }
141 
142     public String getCampusCode() {
143         return this.campusCode;
144     }
145 
146     public boolean isDefaultValue() {
147         return this.defaultValue;
148     }
149 
150     public EntityAffiliationType getAffiliationType() {
151         return this.affiliationType;
152     }
153 
154     public List<EntityEmployment> getEmployments() {
155         return this.employments;
156     }
157 
158     @Override
159     public boolean isActive() {
160         return this.active;
161     }
162 
163     @Override
164     public Long getVersionNumber() {
165         return this.versionNumber;
166     }
167 
168     @Override
169     public String getId() {
170         return this.getEntityAffiliationId();
171     }
172 
173     @Override
174     public String getObjectId() {
175         return this.objectId;
176     }
177 
178     /*@Override
179     public EntityAffiliation getEntityAffliationBo() {
180         return null;  //To change body of implemented methods use File | Settings | File Templates.
181     }*/
182 
183     @Override
184     public String getEntityId() {
185         return entityId;
186     }
187 
188     //@Override
189     /*public OleBorrowerTypeDefinition getOleBorrowerType() {
190         return this.oleBorrowerType;
191     }*/
192 
193     public static class Builder
194             implements Serializable, ModelBuilder, OlePatronAffiliationContract
195     {
196         private String entityAffiliationId;
197         private String affiliationTypeCode;
198         private String campusCode;
199         private boolean defaultValue;
200         private boolean active;
201         private EntityAffiliationType.Builder affiliationType;
202         private List<EntityEmployment.Builder> employments;
203         private String entityId;
204 
205         private Long versionNumber;
206         private String objectId;
207 
208         private Builder() { }
209 
210         public static Builder create() {
211             return new Builder();
212         }
213 
214         public static Builder create(OlePatronAffiliationContract contract) {
215             if(contract == null) {
216                 throw new IllegalArgumentException("contract was null");
217             }
218             Builder builder = create();
219             if (contract.getEntityAffiliationId() != null) {
220                 builder.setEntityAffiliationId(contract.getEntityAffiliationId());
221             }
222             if(contract.getAffiliationTypeCode() != null) {
223                 builder.setAffiliationTypeCode(contract.getAffiliationTypeCode());
224             }
225             if(contract.getCampusCode() != null) {
226                 builder.setCampusCode(contract.getCampusCode());
227             }
228             if(contract.isActive()) {
229                 builder.setActive(contract.isActive());
230             }
231             if(contract.isDefaultValue()) {
232                 builder.setDefaultValue(contract.isDefaultValue());
233             }
234 
235             builder.employments= new ArrayList<EntityEmployment.Builder>();
236             if (!CollectionUtils.isEmpty(contract.getEmployments())) {
237                 for (EntityEmploymentContract entityEmploymentContract : contract.getEmployments()) {
238                     builder.employments.add(EntityEmployment.Builder.create(entityEmploymentContract));
239                 }
240             }
241             if (contract.getAffiliationType() != null) {
242                 builder.setAffiliationType(EntityAffiliationType.Builder.create(contract.getAffiliationType()));
243             }
244 
245             builder.setEntityId(contract.getEntityId());
246             builder.setVersionNumber(contract.getVersionNumber());
247             builder.setObjectId(contract.getObjectId());
248             builder.setActive(contract.isActive());
249             builder.setId(contract.getId());
250             return builder;
251         }
252 
253 
254         public OlePatronAffiliationDefinition build() {
255             return new OlePatronAffiliationDefinition(this);
256         }
257 
258         public String getEntityAffiliationId() {
259             return entityAffiliationId;
260         }
261 
262         public void setEntityAffiliationId(String entityAffiliationId) {
263             this.entityAffiliationId = entityAffiliationId;
264         }
265 
266         public String getAffiliationTypeCode() {
267             return affiliationTypeCode;
268         }
269 
270         public void setAffiliationTypeCode(String affiliationTypeCode) {
271             this.affiliationTypeCode = affiliationTypeCode;
272         }
273 
274         public String getCampusCode() {
275             return campusCode;
276         }
277 
278         public void setCampusCode(String campusCode) {
279             this.campusCode = campusCode;
280         }
281 
282         public boolean isDefaultValue() {
283             return defaultValue;
284         }
285 
286         public void setDefaultValue(boolean defaultValue) {
287             this.defaultValue = defaultValue;
288         }
289 
290         public EntityAffiliationType.Builder getAffiliationType() {
291             return affiliationType;
292         }
293 
294         public void setAffiliationType(EntityAffiliationType.Builder affiliationType) {
295             this.affiliationType = affiliationType;
296         }
297 
298         public List<EntityEmployment.Builder> getEmployments() {
299             return employments;
300         }
301 
302         public void setEmployments(List<EntityEmployment.Builder> employments) {
303             this.employments = employments;
304         }
305 
306         public boolean isActive() {
307             return active;
308         }
309 
310         public void setActive(boolean active) {
311             this.active = active;
312         }
313 
314         @Override
315         public Long getVersionNumber() {
316             return versionNumber;
317         }
318 
319         public void setVersionNumber(Long versionNumber) {
320             this.versionNumber = versionNumber;
321         }
322 
323         @Override
324         public String getObjectId() {
325             return objectId;
326         }
327 
328         public void setObjectId(String objectId) {
329             this.objectId = objectId;
330         }
331 
332         public void setId(String id) {
333             if (StringUtils.isWhitespace(id)) {
334                 throw new IllegalArgumentException("id is blank");
335             }
336             this.entityAffiliationId = id;
337         }
338 
339         @Override
340         public String getId() {
341             return this.entityAffiliationId;
342         }
343 
344         public String getEntityId() {
345             return entityId;
346         }
347 
348         public void setEntityId(String entityId) {
349             this.entityId = entityId;
350         }
351     }
352 
353     static class Constants {
354 
355         final static String ROOT_ELEMENT_NAME = "olePatronAffiliation";
356         final static String TYPE_NAME = "OlePatronAffiliationType";
357         final static String[] HASH_CODE_EQUALS_EXCLUDE = new String[] {CoreConstants.CommonElements.FUTURE_ELEMENTS };
358     }
359 
360     static class Elements {
361         final static String ENTITY_AFFILIATION_ID = "entityAffiliationId";
362         //final static String ENTITY_ID = "entityId";
363         final static String AFFILIATION_TYPE_CODE = "affiliationTypeCode";
364         final static String CAMPUS_CODE = "campusCode";
365         final static String AFFILIATION_TYPE = "affiliationType";
366         final static String EMPLOYMENTS = "employments";
367         final static String DEFAULT_VALUE = "defaultValue";
368         final static String ACTIVE_INDICATOR = "active";
369         final static String ENTITY_ID = "entityId";
370 
371 
372     }
373     public static class Cache {
374         public static final String NAME = KimConstants.Namespaces.KIM_NAMESPACE_2_0 + "/" + Constants.TYPE_NAME;
375     }
376 }