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 | |
import org.kuali.rice.kim.api.identity.TypeContract; |
9 | |
|
10 | |
public interface EntityAffiliationContract extends Versioned, GloballyUnique, Defaultable, Inactivatable, Identifiable { |
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
String getEntityId(); |
17 | |
|
18 | |
|
19 | |
|
20 | |
|
21 | |
|
22 | |
EntityAffiliationTypeContract getAffiliationType(); |
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
String getCampusCode(); |
29 | |
} |