Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Identifiable |
|
| 1.0;1 |
1 | package org.kuali.rice.core.api.mo.common; | |
2 | ||
3 | /** | |
4 | * This interface can be used to identify a model object which has a unique | |
5 | * identifier. | |
6 | * | |
7 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
8 | */ | |
9 | public interface Identifiable { | |
10 | ||
11 | /** | |
12 | * The unique identifier for an object. This can be null. | |
13 | * | |
14 | * @return the id | |
15 | */ | |
16 | String getId(); | |
17 | } |