Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
KrmsAttributeDefinitionContract |
|
| 1.0;1 |
1 | package org.kuali.rice.krms.api.repository; | |
2 | ||
3 | public interface KrmsAttributeDefinitionContract { | |
4 | /** | |
5 | * This is the ID for the KrmsAttributeDefinition | |
6 | * | |
7 | * <p> | |
8 | * It is a ID of a KrmsAttributeDefinition. | |
9 | * </p> | |
10 | * @return ID for KrmsAttributeDefinition. | |
11 | */ | |
12 | public String getId(); | |
13 | ||
14 | /** | |
15 | * This is the name for the KrmsAttributeDefinition | |
16 | * | |
17 | * <p> | |
18 | * It is a name of a KrmsAttributeDefinition. | |
19 | * </p> | |
20 | * @return name for KrmsAttributeDefinition. | |
21 | */ | |
22 | public String getName(); | |
23 | ||
24 | /** | |
25 | * This is the namespace code. | |
26 | * | |
27 | * <p> | |
28 | * It provides scope of the KrmsAttributeDefinition. | |
29 | * </p> | |
30 | * @return the namespace code of the KrmsAttributeDefinition. | |
31 | */ | |
32 | public String getNamespace(); | |
33 | ||
34 | /** | |
35 | * This is the label of the KrmsAttributeDefinition | |
36 | * | |
37 | * @return the label of the KrmsAttributeDefinition | |
38 | */ | |
39 | public String getLabel(); | |
40 | ||
41 | /** | |
42 | * This is the component name of the KrmsAttributeDefinition | |
43 | * | |
44 | * @return the component name of the KrmsAttributeDefinition | |
45 | */ | |
46 | public String getComponentName(); | |
47 | ||
48 | /** | |
49 | * @return the active | |
50 | */ | |
51 | public boolean isActive(); | |
52 | ||
53 | } |