Coverage Report - org.kuali.student.enrollment.lpr.infc.LuiPersonRelationRequest
 
Classes in this File Line Coverage Branch Coverage Complexity
LuiPersonRelationRequest
N/A
N/A
1
 
 1  
 package org.kuali.student.enrollment.lpr.infc;
 2  
 
 3  
 import java.util.List;
 4  
 
 5  
 import org.kuali.student.r2.common.infc.IdEntity;
 6  
 
 7  
 public interface LuiPersonRelationRequest extends IdEntity {
 8  
     
 9  
     /**
 10  
      * 
 11  
      * This method ...
 12  
      * 
 13  
      * @return
 14  
      */
 15  
     public String getRequestingPersonId();
 16  
 
 17  
     /**
 18  
      * 
 19  
      * This method ...
 20  
      * 
 21  
      * @return
 22  
      */
 23  
     public String getPersonId();
 24  
 
 25  
     /**
 26  
      * Returns the id of the RegGroup for this item. This is populated for ADD,
 27  
      * DROP, UPDATE and SWAP types of RegRequestItem
 28  
      * 
 29  
      * @return
 30  
      */
 31  
     public String getNewLuiId();
 32  
 
 33  
     /**
 34  
      * Returns the existing reg group id. The existing reg group field is
 35  
      * populated if we have DROP or SWAP types of Request item.
 36  
      * 
 37  
      * @return
 38  
      */
 39  
     public String getExistingLuiId();
 40  
 
 41  
     /**
 42  
      * Specify the various request (or registration options)
 43  
      * 
 44  
      * @return
 45  
      */
 46  
     public List<? extends RequestOption> getRequestOptions();
 47  
 
 48  
 }