Coverage Report - org.kuali.student.enrollment.lpr.infc.LprRequestOption
 
Classes in this File Line Coverage Branch Coverage Complexity
LprRequestOption
N/A
N/A
1
 
 1  
 package org.kuali.student.enrollment.lpr.infc;
 2  
 
 3  
 import org.kuali.student.r2.common.infc.HasId;
 4  
 
 5  
 /**
 6  
  * Specifies the request options in a LPR transaction. The options can be used
 7  
  * to create specific kinds of LPR relation.
 8  
  * 
 9  
  * @author Kuali Student Team (sambitpatnaik)
 10  
  */
 11  
 public interface LprRequestOption extends HasId{
 12  
     /**
 13  
      * The option value data type of the request option e.g., Boolean, String
 14  
      * etc.
 15  
      *
 16  
      * @name Option Key
 17  
      * @return
 18  
      * @required
 19  
      */
 20  
     public String getOptionKey();
 21  
 
 22  
     /**
 23  
      * This value of the option
 24  
      *
 25  
      * @name Option Value
 26  
      * @return
 27  
      */
 28  
     public String getOptionValue();
 29  
 
 30  
 }