1 package org.kuali.student.enrollment.lpr.infc; 2 3 4 5 public interface LprTransactionItemResult{ 6 7 /** 8 * The status of the transaction. 9 * 10 * Returns true in case transaction item had a successful result, false otherwise. 11 * 12 * @name Status 13 * @return 14 */ 15 public Boolean getStatus(); 16 17 /** 18 * The resulting LPR for this LPR transaction item if its successful. 19 * 20 * Returns null if unsuccessful, valid lpr id in case of success 21 * 22 * @name Resulting Lpr Id 23 * @return 24 */ 25 public String getResultingLprId(); 26 27 /** 28 * The message for the transaction 29 * In case of success, there may still be warning messages 30 * 31 * @name Message 32 */ 33 public String getMessage(); 34 35 36 } 37