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