Coverage Report - org.kuali.student.r2.lum.lrc.ResultValue
 
Classes in this File Line Coverage Branch Coverage Complexity
ResultValue
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  
 import java.util.List;
 6  
 
 7  
 import org.w3c.dom.Element;
 8  
 
 9  
 /**
 10  
  * @author sambit
 11  
  */
 12  
 
 13  
 public interface ResultValue extends Serializable {
 14  
 
 15  
         public String getId();
 16  
         
 17  
         /**
 18  
          * Result Value string Value of the result. Typically corresponds with the
 19  
          * short coded form of the result(ex. "A", "4.0", "97.0", "B.S" etc.)
 20  
          * scaleKey Scale Identifier scaleKey
 21  
          */
 22  
         public String getValue();
 23  
 
 24  
         /**
 25  
          * Rank string Rank of the result value within the scale. Standards around
 26  
          * uniqueness and meaning of value are described in the information about
 27  
          * the scale.
 28  
          */
 29  
         public String getRank();
 30  
 
 31  
         /**
 32  
          * Effective Date dateTime Date and time that this result value became
 33  
          * effective. This is a similar concept to the effective date on enumerated
 34  
          * values. When an expiration date has been specified, this field must be
 35  
          * less than or equal to the expiration date.
 36  
          */
 37  
         public Date getEffectiveDate();
 38  
 
 39  
         /**
 40  
          * Expiration Date dateTime Date and time that this result value expires.
 41  
          * This is a similar concept to the expiration date on enumerated values. If
 42  
          * specified, this should be greater than or equal to the effective date. If
 43  
          * this field is not specified, then no expiration date has been currently
 44  
          * defined and should automatically be considered greater than the effective
 45  
          * date.
 46  
          */
 47  
         public Date getExpirationDate();
 48  
         
 49  
         
 50  
         public String getResultValueGroupKey();
 51  
         
 52  
         public List<Element> get_futureElements();
 53  
 
 54  
         
 55  
 
 56  
 
 57  
 
 58  
 }