Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
AgendaDefinitionContract |
|
| 1.0;1 |
1 | package org.kuali.rice.krms.api.repository.agenda; | |
2 | ||
3 | import java.util.Map; | |
4 | ||
5 | import org.kuali.rice.core.api.mo.common.Identifiable; | |
6 | import org.kuali.rice.core.api.mo.common.Versioned; | |
7 | ||
8 | public interface AgendaDefinitionContract extends Identifiable, Versioned { | |
9 | /** | |
10 | * This is the name of the Agenda | |
11 | * | |
12 | * <p> | |
13 | * name - the name of the Agenda | |
14 | * </p> | |
15 | * @return the name of the Agenda | |
16 | */ | |
17 | public String getName(); | |
18 | ||
19 | /** | |
20 | * This is the namespace of the Agenda | |
21 | * | |
22 | * <p> | |
23 | * The namespace of the Agenda | |
24 | * </p> | |
25 | * @return the namespace of the Agenda | |
26 | */ | |
27 | public String getNamespaceCode(); | |
28 | ||
29 | /** | |
30 | * This is the KrmsType of the Agenda | |
31 | * | |
32 | * @return id for KRMS type related of the Agenda | |
33 | */ | |
34 | public String getTypeId(); | |
35 | ||
36 | /** | |
37 | * This is the ID of the Context relative to the Agenda. | |
38 | * | |
39 | * @return id for Context relative to the Agenda | |
40 | */ | |
41 | public String getContextId(); | |
42 | ||
43 | /** | |
44 | * This is the ID of the first AgendaItem to be executed in the Agenda. | |
45 | * | |
46 | * @return id of the first AgendaItem. | |
47 | */ | |
48 | public String getFirstItemId(); | |
49 | ||
50 | /** | |
51 | * This method returns a list of attributes associated with the | |
52 | * Agenda | |
53 | * | |
54 | * @return a list of AgendaAttribute objects. | |
55 | */ | |
56 | public Map<String, String> getAttributes(); | |
57 | ||
58 | } |