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.GloballyUnique; | |
5 | import org.kuali.rice.core.api.mo.common.Versioned; | |
6 | import org.kuali.rice.core.api.mo.common.active.Inactivatable; | |
7 | ||
8 | public interface TypeContract extends Versioned, GloballyUnique, Inactivatable { | |
9 | ||
10 | /** | |
11 | * This is the code value for the AddressType. It cannot be null or a blank string. | |
12 | * | |
13 | * @return the code for the AddressType, will never be null or blank | |
14 | */ | |
15 | String getCode(); | |
16 | ||
17 | /** | |
18 | * This the name for the AddressType. This can be null or a blank string. | |
19 | * | |
20 | * @return the name of the AddressType | |
21 | */ | |
22 | String getName(); | |
23 | ||
24 | /** | |
25 | * This the sort code for the AddressType. This can be null or a blank string. | |
26 | * | |
27 | * @return the sort code of the AddressType | |
28 | */ | |
29 | String getSortCode(); | |
30 | } |