Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
CategoryDefinitionContract |
|
| 1.0;1 |
1 | package org.kuali.rice.krms.api.repository.category; | |
2 | ||
3 | import org.kuali.rice.core.api.mo.common.Identifiable; | |
4 | import org.kuali.rice.core.api.mo.common.Versioned; | |
5 | ||
6 | public interface CategoryDefinitionContract extends Identifiable, Versioned { | |
7 | ||
8 | /** | |
9 | * Returns the name of the category definition. The combination of name and namespaceCode | |
10 | * represent a unique business key for the category definition. The name should never be | |
11 | * null or blank. | |
12 | * | |
13 | * @return the name of the category definition, should never be null or blank | |
14 | */ | |
15 | String getName(); | |
16 | ||
17 | /** | |
18 | * Returns the namespace of the category definition. The combination of | |
19 | * namespace and name represent a unique business key for the category | |
20 | * definition. The namespace should never be null or blank. | |
21 | * | |
22 | * @return the namespace of the category definition, should never be null or blank | |
23 | */ | |
24 | String getNamespace(); | |
25 | ||
26 | } |