1 package org.kuali.rice.kim.api.identity.residency;
2
3 import org.kuali.rice.core.api.mo.common.Historical;
4 import org.kuali.rice.kim.api.identity.CodedAttributeHistoryContract;
5
6 /**
7 * address information for a KIM identity with effective date data
8 *
9 * @author Kuali Rice Team (rice.collab@kuali.org)
10 *
11 */
12 public interface EntityResidencyHistoryContract extends EntityResidencyContract, Historical {
13 @Override
14 CodedAttributeHistoryContract getResidencyStatus();
15
16 @Override
17 CodedAttributeHistoryContract getResidencyType();
18 }