001 package org.kuali.student.enrollment.lpr.infc;
002
003 import org.kuali.student.r2.common.infc.HasId;
004
005 /**
006 * Specifies the request options in a LPR transaction. The options can be used
007 * to create specific kinds of LPR relation.
008 *
009 * @author Kuali Student Team (sambitpatnaik)
010 */
011 public interface LprTransactionItemRequestOption extends HasId{
012 /**
013 * The option value data type of the request option e.g., Boolean, String
014 * etc.
015 *
016 * @name Option Key
017 * @return
018 * @required
019 */
020 public String getOptionKey();
021
022 /**
023 * This value of the option
024 *
025 * @name Option Value
026 * @return
027 */
028 public String getOptionValue();
029
030 }