001 package org.kuali.student.enrollment.lpr.infc; 002 003 004 005 public interface LprTransactionItemResult{ 006 007 /** 008 * The status of the transaction. 009 * 010 * Returns true in case transaction item had a successful result, false otherwise. 011 * 012 * @name Status 013 * @return 014 */ 015 public Boolean getStatus(); 016 017 /** 018 * The resulting LPR for this LPR transaction item if its successful. 019 * 020 * Returns null if unsuccessful, valid lpr id in case of success 021 * 022 * @name Resulting Lpr Id 023 * @return 024 */ 025 public String getResultingLprId(); 026 027 /** 028 * The message for the transaction 029 * In case of success, there may still be warning messages 030 * 031 * @name Message 032 */ 033 public String getMessage(); 034 035 036 } 037