Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
EntityAffiliationContract |
|
| 1.0;1 |
1 | package org.kuali.rice.kim.api.identity.affiliation; | |
2 | ||
3 | import org.kuali.rice.core.api.mo.common.Defaultable; | |
4 | import org.kuali.rice.core.api.mo.common.GloballyUnique; | |
5 | import org.kuali.rice.core.api.mo.common.Identifiable; | |
6 | import org.kuali.rice.core.api.mo.common.Versioned; | |
7 | import org.kuali.rice.core.api.mo.common.active.Inactivatable; | |
8 | ||
9 | public interface EntityAffiliationContract extends Versioned, GloballyUnique, Defaultable, Inactivatable, Identifiable { | |
10 | ||
11 | /** | |
12 | * Gets this id of the parent identity object. | |
13 | * @return the identity id for this {@link EntityAddressContract} | |
14 | */ | |
15 | String getEntityId(); | |
16 | ||
17 | /** | |
18 | * Gets this {@link KimEntityAffiliation}'s type. | |
19 | * @return the type for this {@link KimEntityAffiliation}, or null if none has been assigned. | |
20 | */ | |
21 | EntityAffiliationTypeContract getAffiliationType(); | |
22 | ||
23 | /** | |
24 | * Gets this {@link KimEntityAffiliation}'s campus code. | |
25 | * @return the campus code for this {@link KimEntityAffiliation}, or null if none has been assigned. | |
26 | */ | |
27 | String getCampusCode(); | |
28 | } |