| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| TypeContract |
|
| 1.0;1 |
| 1 | package org.kuali.rice.kim.api.identity; | |
| 2 | ||
| 3 | ||
| 4 | import org.kuali.rice.core.api.mo.common.Coded; | |
| 5 | import org.kuali.rice.core.api.mo.common.GloballyUnique; | |
| 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 TypeContract extends Versioned, GloballyUnique, Inactivatable, Coded { | |
| 10 | ||
| 11 | /** | |
| 12 | * This the name for the AddressType. This can be null or a blank string. | |
| 13 | * | |
| 14 | * @return the name of the AddressType | |
| 15 | */ | |
| 16 | String getName(); | |
| 17 | ||
| 18 | /** | |
| 19 | * This the sort code for the AddressType. This can be null or a blank string. | |
| 20 | * | |
| 21 | * @return the sort code of the AddressType | |
| 22 | */ | |
| 23 | String getSortCode(); | |
| 24 | } |