Coverage Report - org.kuali.student.process.poc.context.MilestoneCheckContext
 
Classes in this File Line Coverage Branch Coverage Complexity
MilestoneCheckContext
0%
0/13
N/A
1
 
 1  
 package org.kuali.student.process.poc.context;
 2  
 
 3  
 import java.util.Date;
 4  
 
 5  0
 public class MilestoneCheckContext extends CheckContext {
 6  
 
 7  
     private String atpKey;
 8  
     private Date dateToTest;
 9  
     private int comparison;
 10  
     private String studentId;
 11  
     public static final int START_DATE = 0;
 12  
     public static final int END_DATE = 1;
 13  
     public static final int PERIOD = 2;
 14  
 
 15  
     public String getStudentId() {
 16  0
         return studentId;
 17  
     }
 18  
 
 19  
     public void setStudentId(String studentId) {
 20  0
         this.studentId = studentId;
 21  0
     }
 22  
 
 23  
     public String getAtpKey() {
 24  0
         return atpKey;
 25  
     }
 26  
 
 27  
     public void setAtpKey(String atpKey) {
 28  0
         this.atpKey = atpKey;
 29  0
     }
 30  
 
 31  
     public int getComparison() {
 32  0
         return comparison;
 33  
     }
 34  
 
 35  
     public void setComparison(int comparison) {
 36  0
         this.comparison = comparison;
 37  0
     }
 38  
 
 39  
     public Date getDateToTest() {
 40  0
         return dateToTest;
 41  
     }
 42  
 
 43  
     public void setDateToTest(Date dateToTest) {
 44  0
         this.dateToTest = dateToTest;
 45  0
     }
 46  
 }