Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
AdminOrg |
|
| 1.0;1 |
1 | package org.kuali.student.r2.lum.clu.infc; | |
2 | ||
3 | import org.kuali.student.r2.common.infc.IdEntity; | |
4 | ||
5 | /** | |
6 | * Admin Org information | |
7 | * | |
8 | * @Version 2.0 | |
9 | * @Author Sri komandur@uw.edu | |
10 | */ | |
11 | public interface AdminOrg extends IdEntity { | |
12 | ||
13 | /** | |
14 | * Unique identifier for an organization. | |
15 | * | |
16 | * @name Org Id | |
17 | * @readOnly | |
18 | * @required | |
19 | */ | |
20 | public String getOrgId(); | |
21 | ||
22 | /** | |
23 | * @name Primary | |
24 | */ | |
25 | public Boolean getIsPrimary(); | |
26 | ||
27 | } |