Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
RuleAttributeContract |
|
| 1.0;1 |
1 | package org.kuali.rice.krms.api.repository; | |
2 | ||
3 | import java.util.List; | |
4 | ||
5 | public interface RuleAttributeContract { | |
6 | /** | |
7 | * This is the ID for the RuleAttribute | |
8 | * | |
9 | * <p> | |
10 | * It is a ID of a RuleAttribute | |
11 | * </p> | |
12 | * @return ID for RuleAttribute | |
13 | */ | |
14 | public String getId(); | |
15 | ||
16 | /** | |
17 | * This is the id of the Rule to which the attribute applies | |
18 | * | |
19 | * <p> | |
20 | * It is a id of a Rule related to the attribute. | |
21 | * </p> | |
22 | * @return id for Rule related to the attribute. | |
23 | */ | |
24 | public String getRuleId(); | |
25 | ||
26 | /** | |
27 | * This is the id of the definition of the attribute. | |
28 | * | |
29 | * <p> | |
30 | * It identifies the attribute definition | |
31 | * </p> | |
32 | * @return the attribute definition id. | |
33 | */ | |
34 | public String getAttributeDefinitionId(); | |
35 | ||
36 | /** | |
37 | * This is the value of the attribute | |
38 | * | |
39 | * @return the value of the AAttribute | |
40 | */ | |
41 | public String getValue(); | |
42 | ||
43 | /** | |
44 | * This is the definition of the attribute | |
45 | */ | |
46 | public KrmsAttributeDefinitionContract getAttributeDefinition(); | |
47 | ||
48 | } |