View Javadoc

1   package org.kuali.ole.patron.bo;
2   
3   import org.apache.commons.collections.CollectionUtils;
4   import org.kuali.ole.patron.api.OlePatronAffiliationContract;
5   import org.kuali.ole.patron.api.OlePatronAffiliationDefinition;
6   import org.kuali.rice.kim.api.identity.employment.EntityEmployment;
7   import org.kuali.rice.kim.api.identity.phone.EntityPhone;
8   import org.kuali.rice.kim.impl.identity.affiliation.EntityAffiliationBo;
9   import org.kuali.rice.kim.impl.identity.affiliation.EntityAffiliationTypeBo;
10  import org.kuali.rice.kim.impl.identity.employment.EntityEmploymentBo;
11  import org.kuali.rice.kim.impl.identity.name.EntityNameBo;
12  import org.kuali.rice.kim.impl.identity.phone.EntityPhoneBo;
13  import org.kuali.rice.krad.bo.BusinessObjectBase;
14  
15  import java.util.ArrayList;
16  import java.util.List;
17  
18  /**
19   OlePatronAffiliation provides OlePatronAffiliation information through getter and setter.
20   */
21  public class OlePatronAffiliation extends BusinessObjectBase implements OlePatronAffiliationContract {
22  
23      private String entityAffiliationId;
24  
25      private String entityId;
26  
27      private String affiliationTypeCode;
28  
29      private String campusCode;
30  
31      private boolean defaultValue;
32  
33      private boolean active;
34  
35      private EntityAffiliationTypeBo affiliationType = new EntityAffiliationTypeBo();
36  
37      private List<EntityEmploymentBo> employments = new ArrayList<EntityEmploymentBo>();
38  
39      private Long versionNumber;
40  
41      private String objectId;
42  
43      public OlePatronAffiliation() {
44  
45      }
46  
47      /**
48       * Constructor sets the values to entityAffiliationBo object from OlePatronAffiliation
49       * @param entityAffiliationBo
50       */
51      public OlePatronAffiliation(EntityAffiliationBo entityAffiliationBo) {
52          this.setEntityAffiliationId(entityAffiliationBo.getId());
53          this.setAffiliationTypeCode(entityAffiliationBo.getAffiliationTypeCode());
54          this.setAffiliationType(entityAffiliationBo.getAffiliationType());
55          this.setCampusCode(entityAffiliationBo.getCampusCode());
56          this.setDefaultValue(entityAffiliationBo.getDefaultValue());
57          this.setActive(entityAffiliationBo.getActive());
58          this.setVersionNumber(entityAffiliationBo.getVersionNumber());
59          this.setObjectId(entityAffiliationBo.getObjectId());
60      }
61      /**
62       * Gets the value of entityAffiliationId property
63       * @return entityAffiliationId
64       */
65      public String getEntityAffiliationId() {
66          return entityAffiliationId;
67      }
68      /**
69       * Sets the value for entityAffiliationId property
70       * @param entityAffiliationId
71       */
72      public void setEntityAffiliationId(String entityAffiliationId) {
73          this.entityAffiliationId = entityAffiliationId;
74      }
75      /**
76       * Gets the value of affiliationTypeCode property
77       * @return affiliationTypeCode
78       */
79      public String getAffiliationTypeCode() {
80          return affiliationTypeCode;
81      }
82      /**
83       * Sets the value for affiliationTypeCode property
84       * @param affiliationTypeCode
85       */
86      public void setAffiliationTypeCode(String affiliationTypeCode) {
87          this.affiliationTypeCode = affiliationTypeCode;
88      }
89      /**
90       * Gets the value of campusCode property
91       * @return campusCode
92       */
93      public String getCampusCode() {
94          return campusCode;
95      }
96      /**
97       * Sets the value for campusCode property
98       * @param campusCode
99       */
100     public void setCampusCode(String campusCode) {
101         this.campusCode = campusCode;
102     }
103     /**
104      * Gets the value of defaultValue property
105      * @return defaultValue
106      */
107     public boolean isDefaultValue() {
108         return defaultValue;
109     }
110     /**
111      * Sets the value for defaultValue property
112      * @param defaultValue
113      */
114     public void setDefaultValue(boolean defaultValue) {
115         this.defaultValue = defaultValue;
116     }
117     /**
118      * Gets the value of active property
119      * @return active
120      */
121     public boolean isActive() {
122         return active;
123     }
124     /**
125      * Sets the value for active property
126      * @param active
127      */
128     public void setActive(boolean active) {
129         this.active = active;
130     }
131 
132     /**
133      * Gets the value of affiliationType property
134      * @return affiliationType
135      */
136     public EntityAffiliationTypeBo getAffiliationType() {
137         return affiliationType;
138     }
139     /**
140      * Sets the value for affiliationType property
141      * @param affiliationType
142      */
143     public void setAffiliationType(EntityAffiliationTypeBo affiliationType) {
144         this.affiliationType = affiliationType;
145     }
146     /**
147      * Gets the value of employments property
148      * @return employments
149      */
150     public List<EntityEmploymentBo> getEmployments() {
151         return employments;
152     }
153     /**
154      * Sets the value for employments property
155      * @param employments
156      */
157     public void setEmployments(List<EntityEmploymentBo> employments) {
158         this.employments = employments;
159     }
160     /**
161      * Gets the value of EntityAffiliation property
162      * @return EntityAffiliation
163      */
164     public EntityAffiliationBo getEntityAffliationBo() {
165         EntityAffiliationBo entityAffiliationBo = new EntityAffiliationBo();
166         entityAffiliationBo.setId(this.getEntityAffiliationId());
167         entityAffiliationBo.setAffiliationTypeCode(this.getAffiliationTypeCode());
168         entityAffiliationBo.setAffiliationType(this.getAffiliationType());
169         entityAffiliationBo.setActive(this.isActive());
170         entityAffiliationBo.setDefaultValue(this.defaultValue);
171         entityAffiliationBo.setCampusCode(this.getCampusCode());
172         entityAffiliationBo.setObjectId(this.getObjectId());
173         entityAffiliationBo.setVersionNumber(this.getVersionNumber());
174         entityAffiliationBo.setEntityId(this.getEntityId());
175         return entityAffiliationBo;
176     }
177 
178     /**
179      * This method converts the PersistableBusinessObjectBase OleBorrowerType into immutable object OlePatronAffiliationDefinition
180      * @param bo(OlePatronAffiliation)
181      * @return OlePatronAffiliationDefinition
182      */
183     static OlePatronAffiliationDefinition to(OlePatronAffiliation bo) {
184         if (bo == null) { return null; }
185         return OlePatronAffiliationDefinition.Builder.create(bo).build();
186     }
187 
188     /**
189      * This method converts the immutable object OlePatronAffiliationDefinition into PersistableBusinessObjectBase OlePatronAffiliation
190      * @param im(OlePatronAffiliationDefinition)
191      * @return bo(OlePatronAffiliation)
192      */
193     static OlePatronAffiliation from(OlePatronAffiliationDefinition im) {
194         if (im == null) { return null; }
195 
196         OlePatronAffiliation bo = new OlePatronAffiliation();
197         bo.entityAffiliationId= im.getEntityAffiliationId();
198         bo.affiliationTypeCode = im.getAffiliationTypeCode();
199         if (im.getAffiliationType() != null) {
200             bo.affiliationType = EntityAffiliationTypeBo.from(im.getAffiliationType());
201         }
202         bo.defaultValue = im.isDefaultValue();
203         bo.active = im.isActive();
204         bo.versionNumber = im.getVersionNumber();
205         bo.entityId = im.getEntityId();
206         bo.objectId = im.getObjectId();
207 
208         if (CollectionUtils.isNotEmpty(im.getEmployments())) {
209             for (EntityEmployment entityEmployment : im.getEmployments()) {
210                 bo.employments.add(EntityEmploymentBo.from(entityEmployment));
211             }
212         }
213         return bo;
214     }
215 
216     @Override
217     public void refresh() {
218         //To change body of implemented methods use File | Settings | File Templates.
219     }
220     /**
221      * Gets the value of entityAffiliationId property
222      * @return entityAffiliationId
223      */
224     @Override
225     public String getId() {
226         return this.entityAffiliationId;
227     }
228 
229     /**
230      * Gets the value of versionNumber property
231      * @return versionNumber
232      */
233     @Override
234     public Long getVersionNumber() {
235         return this.versionNumber;
236     }
237     /**
238      * Sets the value for versionNumber property
239      * @param versionNumber
240      */
241     public void setVersionNumber(Long versionNumber) {
242         this.versionNumber = versionNumber;
243     }
244     /**
245      * Gets the value of objectId property
246      * @return objectId
247      */
248     public String getObjectId() {
249         return objectId;
250     }
251     /**
252      * Sets the value for objectId property
253      * @param objectId
254      */
255     public void setObjectId(String objectId) {
256         this.objectId = objectId;
257     }
258     /**
259      * Gets the value of entityId property
260      * @return entityId
261      */
262     public String getEntityId() {
263         return entityId;
264     }
265     /**
266      * Sets the value for entityId property
267      * @param entityId
268      */
269     public void setEntityId(String entityId) {
270         this.entityId = entityId;
271     }
272 }