Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
KrmsTypeContract |
|
| 1.0;1 |
1 | package org.kuali.rice.krms.api.repository; | |
2 | ||
3 | import java.util.List; | |
4 | ||
5 | public interface KrmsTypeContract { | |
6 | /** | |
7 | * This is the ID for the KRMSType | |
8 | * | |
9 | * <p> | |
10 | * It is a ID of a KRMS type. | |
11 | * </p> | |
12 | * @return ID for KRMS type. | |
13 | */ | |
14 | public String getId(); | |
15 | ||
16 | /** | |
17 | * This is the name for the KRMSType | |
18 | * | |
19 | * <p> | |
20 | * It is a name of a KRMS type. | |
21 | * </p> | |
22 | * @return name for KRMS type. | |
23 | */ | |
24 | public String getName(); | |
25 | ||
26 | /** | |
27 | * This is the namespace code. | |
28 | * | |
29 | * <p> | |
30 | * It provides scope of the KRMS type. | |
31 | * </p> | |
32 | * @return the namespace code of the KRMS type. | |
33 | */ | |
34 | public String getNamespace(); | |
35 | ||
36 | /** | |
37 | * This is the name of the KRMS KrmsType service | |
38 | * | |
39 | * @return the service name of the KRMS type | |
40 | */ | |
41 | public String getServiceName(); | |
42 | ||
43 | /** | |
44 | * This method returns a list of attributes associated with the | |
45 | * KrmsType | |
46 | * | |
47 | * @return a list of KrmsTypeAttribute objects. | |
48 | */ | |
49 | public List<? extends KrmsTypeAttributeContract> getAttributes(); | |
50 | ||
51 | /** | |
52 | * @return the active | |
53 | */ | |
54 | public boolean isActive(); | |
55 | ||
56 | } |