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.core.bo;
17  
18  import java.sql.Timestamp;
19  import java.util.Date;
20  
21  import org.joda.time.DateTime;
22  import org.joda.time.LocalDate;
23  import org.kuali.kpme.core.api.bo.HrBusinessObjectContract;
24  import org.kuali.kpme.core.api.mo.KpmeEffectiveDataTransferObject;
25  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
26  
27  public abstract class HrBusinessObject extends PersistableBusinessObjectBase implements HrBusinessObjectContract {
28  
29  	private static final long serialVersionUID = -5743717258128864335L;
30  	
31  	private Date effectiveDate;
32  	private boolean active=true;
33  	private Timestamp timestamp;
34      private String userPrincipalId;
35  
36      //purely for UI (showHistory)
37      private transient Boolean history;
38  
39  	public abstract String getId();
40  	
41  	public abstract void setId(String id);
42  	
43  	protected abstract String getUniqueKey();
44  	
45  	public Date getEffectiveDate() {
46  		return effectiveDate;
47  	}
48  
49  	public void setEffectiveDate(Date effectiveDate) {
50  		this.effectiveDate = effectiveDate;
51  	}
52  
53      public Date getRelativeEffectiveDate() {
54          return effectiveDate == null ? LocalDate.now().toDate() : effectiveDate;
55      }
56  
57      public void setRelativeEffectiveDate(Date relativeEffectiveDate) {
58          //do nothing
59      }
60  	
61  	public LocalDate getEffectiveLocalDate() {
62  		return effectiveDate != null ? LocalDate.fromDateFields(effectiveDate) : null;
63  	}
64  	
65  	public void setEffectiveLocalDate(LocalDate effectiveLocalDate) {
66  		this.effectiveDate = effectiveLocalDate != null ? effectiveLocalDate.toDate() : null;
67  	}
68  
69  	public boolean isActive() {
70  		return active;
71  	}
72  
73  	public void setActive(boolean active) {
74  		this.active = active;
75  	}
76  
77  	public void setTimestamp(Timestamp timestamp) {
78  		this.timestamp = timestamp;
79  	}
80  
81  	public Timestamp getTimestamp() {
82  		return timestamp;
83  	}
84  
85      public String getUserPrincipalId() {
86          return userPrincipalId;
87      }
88  
89      public void setUserPrincipalId(String userPrincipalId) {
90          this.userPrincipalId = userPrincipalId;
91      }
92  
93  	public boolean areAllBusinessKeyValuesAvailable() {
94  		boolean retVal = true;
95  		try {
96  			if(this.getBusinessKeyValuesMap().isEmpty()) {
97  				retVal = false;
98  			}
99  		}
100 		catch(Exception e) {
101 			retVal = false;
102 		}		
103 		return retVal;
104 	}
105 
106     public Boolean getHistory() {
107         return history;
108     }
109 
110     public void setHistory(Boolean history) {
111         this.history = history;
112     }
113 
114     public DateTime getCreateTime() {
115         return getTimestamp() == null ? null : new DateTime(getTimestamp().getTime());
116     }
117     
118     
119     /**
120      * Utility method to copy over the common fields like timestamp, effective date etc. from the src object 
121      * to the dest object.
122      * 
123      * @param dest
124      * @param src
125      */
126     public static void copyCommonFields(HrBusinessObject dest, KpmeEffectiveDataTransferObject src) {
127     	dest.setEffectiveDate(src.getEffectiveLocalDate() == null ? null : src.getEffectiveLocalDate().toDate());
128         dest.setActive(src.isActive());
129         if (src.getCreateTime() != null) {
130             dest.setTimestamp(new Timestamp(src.getCreateTime().getMillis()));
131         }
132         dest.setUserPrincipalId(src.getUserPrincipalId());
133         dest.setVersionNumber(src.getVersionNumber());
134         dest.setObjectId(src.getObjectId());
135     }
136 }