| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| AdminOrg |
|
| 1.0;1 |
| 1 | package org.kuali.student.r2.lum.lu.infc; | |
| 2 | ||
| 3 | import org.kuali.student.r2.common.infc.IdEntity; | |
| 4 | ||
| 5 | public interface AdminOrg extends IdEntity { | |
| 6 | ||
| 7 | /** | |
| 8 | * Unique identifier for an organization. | |
| 9 | * | |
| 10 | * @required | |
| 11 | * @name Organization Id | |
| 12 | */ | |
| 13 | public String getOrgId(); | |
| 14 | ||
| 15 | /** | |
| 16 | * @name Primary | |
| 17 | */ | |
| 18 | public boolean isPrimary(); | |
| 19 | ||
| 20 | } |