Coverage Report - org.kuali.student.common.infc.HasEffectiveDatesInfc
 
Classes in this File Line Coverage Branch Coverage Complexity
HasEffectiveDatesInfc
N/A
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 package org.kuali.student.common.infc;
 16  
 
 17  
 import java.util.Date;
 18  
 
 19  
 /**
 20  
  *
 21  
  * @author nwright
 22  
  */
 23  
 public interface HasEffectiveDatesInfc {
 24  
    /**
 25  
      * Set ????
 26  
      * <p/>
 27  
      * Type: Date
 28  
      * <p/>
 29  
      * Name:Effective
 30  
      * Date/time this relationship became effective. Must be less than or equal to the
 31  
      * expirationDate specified.
 32  
      */
 33  
     public void setEffectiveDate(Date effectiveDate);
 34  
 
 35  
     /**
 36  
      * Get ????
 37  
      * <p/>
 38  
      * Type: Date
 39  
      * <p/>
 40  
      * Name:Effective
 41  
      * Date/time this relationship became effective. Must be less than or equal to the
 42  
      * expirationDate specified.
 43  
      */
 44  
     public Date getEffectiveDate();
 45  
 
 46  
     /**
 47  
      * Set ????
 48  
      * <p/>
 49  
      * Type: Date
 50  
      * <p/>
 51  
      * Name: Expiration
 52  
      * Date/time this relationship is no longer effective. Must be greater than or
 53  
      * equal to the effectiveDate specified.
 54  
      */
 55  
     public void setExpirationDate(Date expirationDate);
 56  
 
 57  
     /**
 58  
      * Get ????
 59  
      * <p/>
 60  
      * Type: Date
 61  
      * <p/>
 62  
      * Name: Expiration
 63  
      * Date/time this relationship is no longer effective. Must be greater than or
 64  
      * equal to the effectiveDate specified.
 65  
      */
 66  
     public Date getExpirationDate();
 67  
 }