Coverage Report - org.kuali.student.r2.lum.lrc.ResultValueGroupType
 
Classes in this File Line Coverage Branch Coverage Complexity
ResultValueGroupType
N/A
N/A
1
 
 1  
 package org.kuali.student.r2.lum.lrc;
 2  
 
 3  
 import java.io.Serializable;
 4  
 import java.util.Date;
 5  
 
 6  
 
 7  
 
 8  
 
 9  
 public interface ResultValueGroupType extends Serializable {
 10  
         
 11  
         /**
 12  
          * Date and time that this result component type became effective. This is a
 13  
          * similar concept to the effective date on enumerated values. When an
 14  
          * expiration date has been specified, this field must be less than or equal
 15  
          * to the expiration date.
 16  
          */
 17  
         public Date getEffectiveDate();
 18  
 
 19  
         /**
 20  
          * Date and time that this result component type expires. This is a similar
 21  
          * concept to the expiration date on enumerated values. If specified, this
 22  
          * should be greater than or equal to the effective date. If this field is
 23  
          * not specified, then no expiration date has been currently defined and
 24  
          * should automatically be considered greater than the effective date.
 25  
          */
 26  
         public Date getExpirationDate();
 27  
 
 28  
         /**
 29  
          * Unique identifier for a result component type.
 30  
          */
 31  
         public String getId();
 32  
 }