Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Identifiable |
|
| 1.0;1 |
1 | package org.kuali.rice.core.api.mo.common; | |
2 | ||
3 | public interface Identifiable { | |
4 | ||
5 | /** | |
6 | * The unique identifier for an object. This can be null. | |
7 | * | |
8 | * @return the id | |
9 | */ | |
10 | String getId(); | |
11 | } |