001    /**
002     * Copyright 2004-2013 The Kuali Foundation
003     *
004     * Licensed under the Educational Community License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     *
008     * http://www.opensource.org/licenses/ecl2.php
009     *
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.kuali.hr.time;
017    
018    import java.sql.Date;
019    import java.sql.Timestamp;
020    
021    import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
022    
023    public abstract class HrBusinessObject extends PersistableBusinessObjectBase{
024    
025        /**
026         *
027         */
028        private static final long serialVersionUID = 1L;
029    
030    
031        protected abstract String getUniqueKey();
032        protected Date effectiveDate;
033        protected boolean active;
034        protected Timestamp timestamp;
035    
036        public abstract String getId();
037    
038        public abstract void setId(String id);
039    
040        public Date getEffectiveDate() {
041            return effectiveDate;
042        }
043    
044        public void setEffectiveDate(Date effectiveDate) {
045            this.effectiveDate = effectiveDate;
046        }
047    
048        public boolean isActive() {
049            return active;
050        }
051    
052        public void setActive(boolean active) {
053            this.active = active;
054        }
055    
056        public void setTimestamp(Timestamp timestamp) {
057            this.timestamp = timestamp;
058        }
059    
060        public Timestamp getTimestamp() {
061            return timestamp;
062        }
063    
064    }