Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
CluInstructor |
|
| 1.0;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 | public String getOrgId(); | |
16 | ||
17 | /** | |
18 | * Unique identifier for a person record. | |
19 | */ | |
20 | public String getPersonId(); | |
21 | ||
22 | /** | |
23 | * @return the personInfoOverride | |
24 | */ | |
25 | public String getPersonInfoOverride(); | |
26 | } |