Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
AgendaOverride |
|
| 1.0;1 |
1 | /** | |
2 | * Copyright 2010 The Kuali Foundation Licensed under the Educational Community | |
3 | * License, Version 2.0 (the "License"); you may not use this file except in | |
4 | * compliance with the License. You may obtain a copy of the License at | |
5 | * | |
6 | * http://www.osedu.org/licenses/ECL-2.0 | |
7 | * | |
8 | * Unless required by applicable law or agreed to in writing, software | |
9 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | |
10 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | |
11 | * License for the specific language governing permissions and limitations under | |
12 | * the License. | |
13 | */ | |
14 | package org.kuali.student.r2.core.exemption.infc; | |
15 | ||
16 | /** | |
17 | * Information about an Agenda override. An agenda override describes data | |
18 | * related to an override of a rule, such as a pre-req, optionally supplying a | |
19 | * new rule to be evaluated in it's place. | |
20 | * | |
21 | * @author tom | |
22 | * @since Tue Jun 14 14:22:34 EDT 2011 | |
23 | */ | |
24 | public interface AgendaOverride { | |
25 | ||
26 | /** | |
27 | * The Id for the existing agenda id that is being overridden | |
28 | * | |
29 | * For example the agenda id for a pre-requisite rule. | |
30 | * | |
31 | * @name Agenda Id | |
32 | */ | |
33 | public String getExistingAgendaId(); | |
34 | ||
35 | /** | |
36 | * The Id for the new agenda id to use that overrides the existing | |
37 | * agenda | |
38 | * | |
39 | * @name Agenda Id | |
40 | */ | |
41 | public String getNewAgendaId(); | |
42 | ||
43 | /** | |
44 | * The ref object Uri of the anchor object who's associated rule is being | |
45 | * overridden | |
46 | * | |
47 | * For example this should be the ref uri for a CluInfo to override a | |
48 | * statement related to a course or a program. | |
49 | * | |
50 | * @name Anchor Ref Object Uri | |
51 | */ | |
52 | public String getAnchorRefObjectUri(); | |
53 | ||
54 | /** | |
55 | * The Id of anchor object who's statement is being overridden | |
56 | * | |
57 | * @name Anchor Ref Object Id | |
58 | */ | |
59 | public String getAnchorRefObjectId(); | |
60 | } |