Coverage Report - org.kuali.rice.krad.bo.InactivatableFromToImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
InactivatableFromToImpl
0%
0/15
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-2008 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.rice.krad.bo;
 17  
 
 18  
 import org.kuali.rice.core.api.mo.common.active.InactivatableFromToUtils;
 19  
 
 20  
 import javax.persistence.Column;
 21  
 import javax.persistence.MappedSuperclass;
 22  
 import javax.persistence.Transient;
 23  
 import java.sql.Timestamp;
 24  
 
 25  
 /**
 26  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 27  
  */
 28  
 @MappedSuperclass
 29  0
 public abstract class InactivatableFromToImpl extends PersistableBusinessObjectBase implements InactivatableFromTo {
 30  
 
 31  
         private static final long serialVersionUID = 1L;
 32  
 
 33  
         @Column(name = "ACTV_FRM_DT")
 34  
         protected Timestamp activeFromDate;
 35  
         @Column(name = "ACTV_TO_DT")
 36  
         protected Timestamp activeToDate;
 37  
         @Transient
 38  
         protected Timestamp activeAsOfDate;
 39  
         @Transient
 40  
         protected boolean current;
 41  
 
 42  
         /**
 43  
          * Returns active if the {@link #getActiveAsOfDate()} (current time used if not set) is between
 44  
          * the from and to dates. Null dates are considered to indicate an open range.
 45  
          */
 46  
         public boolean isActive() {
 47  0
         return InactivatableFromToUtils.isActive(activeFromDate, activeToDate, activeAsOfDate);
 48  
         }
 49  
         
 50  
         public void setActive(boolean active) {
 51  
                 // do nothing
 52  0
         }
 53  
 
 54  
         public void setActiveFromDate(Timestamp from) {
 55  0
                 this.activeFromDate = from;
 56  0
         }
 57  
 
 58  
         public void setActiveToDate(Timestamp to) {
 59  0
                 this.activeToDate = to;
 60  0
         }
 61  
 
 62  
         public Timestamp getActiveFromDate() {
 63  0
                 return this.activeFromDate;
 64  
         }
 65  
 
 66  
         public Timestamp getActiveToDate() {
 67  0
                 return this.activeToDate;
 68  
         }
 69  
 
 70  
         public Timestamp getActiveAsOfDate() {
 71  0
                 return this.activeAsOfDate;
 72  
         }
 73  
 
 74  
         public void setActiveAsOfDate(Timestamp activeAsOfDate) {
 75  0
                 this.activeAsOfDate = activeAsOfDate;
 76  0
         }
 77  
 
 78  
         public boolean isCurrent() {
 79  0
                 return this.current;
 80  
         }
 81  
 
 82  
         public void setCurrent(boolean current) {
 83  0
                 this.current = current;
 84  0
         }
 85  
 }