Coverage Report - org.kuali.student.r2.lum.lu.infc.CluInstructor
 
Classes in this File Line Coverage Branch Coverage Complexity
CluInstructor
N/A
N/A
1
 
 1  
 package org.kuali.student.r2.lum.lu.infc;
 2  
 
 3  
 import org.kuali.student.r2.common.infc.HasAttributes;
 4  
 
 5  
 /**
 6  
  * Information about a potential instructor for a clu.
 7  
  *
 8  
  * @author Kuali Student Team (sambitpa@kuali.org)
 9  
  */
 10  
 public interface CluInstructor extends HasAttributes {
 11  
     /**
 12  
      * Unique identifier for an organization. This indicates which organization
 13  
      * this individual is associated with for the purposes of this clu.
 14  
      *
 15  
      * @name Org Id
 16  
      * @readOnly
 17  
      * @required
 18  
      */
 19  
     public String getOrgId();
 20  
 
 21  
     /**
 22  
      * Unique identifier for a person record.
 23  
      *
 24  
      * @name Person Id
 25  
      * @readOnly
 26  
      * @required
 27  
      */
 28  
     public String getPersonId();
 29  
 
 30  
     /**
 31  
      * Any override information for the person
 32  
      *
 33  
      * @name Person Info Override
 34  
      */
 35  
     public String getPersonInfoOverride();
 36  
 }