| 1 | |
package org.kuali.student.r2.core.process.context; |
| 2 | |
|
| 3 | |
public class DirectRuleCheckContext extends CheckContext { |
| 4 | |
|
| 5 | |
private String atpKey; |
| 6 | |
private String studentId; |
| 7 | |
|
| 8 | 0 | public DirectRuleCheckContext() { |
| 9 | 0 | } |
| 10 | |
|
| 11 | |
public String getAtpKey() { |
| 12 | 0 | return atpKey; |
| 13 | |
} |
| 14 | |
|
| 15 | |
public void setAtpKey(String atpKey) { |
| 16 | 0 | this.atpKey = atpKey; |
| 17 | 0 | } |
| 18 | |
|
| 19 | |
public String getStudentId() { |
| 20 | 0 | return studentId; |
| 21 | |
} |
| 22 | |
|
| 23 | |
public void setStudentId(String studentId) { |
| 24 | 0 | this.studentId = studentId; |
| 25 | 0 | } |
| 26 | |
|
| 27 | |
|
| 28 | |
} |