| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| EntityCitizenshipContract | 
  | 
  | 1.0;1 | 
| 1 |  package org.kuali.rice.kim.api.entity.citizenship; | |
| 2 | ||
| 3 | ||
| 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.entity.TypeContract; | |
| 9 | ||
| 10 |  import java.sql.Timestamp; | |
| 11 | ||
| 12 | public interface EntityCitizenshipContract extends Versioned, GloballyUnique, Inactivatable, Identifiable {  | |
| 13 |          /** | |
| 14 |       * Gets this id of the parent entity object. | |
| 15 |       * @return the entity id for this {@link EntityCitizenshipContract} | |
| 16 |       */ | |
| 17 | String getEntityId();  | |
| 18 | ||
| 19 |      /** | |
| 20 |       * Gets this {@link EntityCitizenshipContract}'s citizenship status object. | |
| 21 |       * @return the Type object of citizenship status for this {@link EntityCitizenshipContract}, or null if none has been assigned. | |
| 22 |       */ | |
| 23 | TypeContract getStatus();  | |
| 24 | ||
| 25 |          /** | |
| 26 |       * Gets this {@link EntityCitizenshipContract}'s country code. | |
| 27 |       * @return the country code for this {@link EntityCitizenshipContract}, or null if none has been assigned. | |
| 28 |       */ | |
| 29 | String getCountryCode();  | |
| 30 | ||
| 31 |          /** | |
| 32 |       * Gets this {@link EntityCitizenshipContract}'s start date. | |
| 33 |       * @return the start date for this {@link EntityCitizenshipContract}, or null if none has been assigned. | |
| 34 |       */ | |
| 35 | Timestamp getStartDate();  | |
| 36 | ||
| 37 |          /** | |
| 38 |       * Gets this {@link EntityCitizenshipContract}'s end date. | |
| 39 |       * @return the end date for this {@link EntityCitizenshipContract}, or null if none has been assigned. | |
| 40 |       */ | |
| 41 | Timestamp getEndDate();  | |
| 42 | }  |