| 1 | |
package org.kuali.student.process.poc.context; |
| 2 | |
|
| 3 | |
import org.kuali.student.r2.core.process.dto.CheckInfo; |
| 4 | |
import org.kuali.student.r2.core.process.dto.InstructionInfo; |
| 5 | |
|
| 6 | 0 | public class CheckContext { |
| 7 | |
|
| 8 | |
private InstructionInfo instruction; |
| 9 | |
private CheckInfo check; |
| 10 | |
|
| 11 | |
public CheckInfo getCheck() { |
| 12 | 0 | return check; |
| 13 | |
} |
| 14 | |
|
| 15 | |
public void setCheck(CheckInfo check) { |
| 16 | 0 | this.check = check; |
| 17 | 0 | } |
| 18 | |
|
| 19 | |
public InstructionInfo getInstruction() { |
| 20 | 0 | return instruction; |
| 21 | |
} |
| 22 | |
|
| 23 | |
public void setInstruction(InstructionInfo instruction) { |
| 24 | 0 | this.instruction = instruction; |
| 25 | 0 | } |
| 26 | |
|
| 27 | |
} |