Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ExemptionRequest |
|
| 1.0;1 |
1 | /** | |
2 | * Copyright 2010 The Kuali Foundation Licensed under the | |
3 | * Educational Community License, Version 2.0 (the "License"); you may | |
4 | * not use this file except in compliance with the License. You may | |
5 | * obtain a copy of the License at | |
6 | * | |
7 | * http://www.osedu.org/licenses/ECL-2.0 | |
8 | * | |
9 | * Unless required by applicable law or agreed to in writing, | |
10 | * software distributed under the License is distributed on an "AS IS" | |
11 | * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | |
12 | * or implied. See the License for the specific language governing | |
13 | * permissions and limitations under the License. | |
14 | */ | |
15 | ||
16 | package org.kuali.student.enrollment.exemption.infc; | |
17 | ||
18 | import java.util.Date; | |
19 | import org.kuali.student.r2.common.infc.IdEntity; | |
20 | ||
21 | ||
22 | /** | |
23 | * Information about an ExemptionRequest. | |
24 | * | |
25 | * The qualifier, if it exists, qualifies the restriction exemption to | |
26 | * a scope, such as for a particular Program. | |
27 | * | |
28 | * There can only be one override structure per exemption request. The | |
29 | * override structure available in this ExmeptionRequest is | |
30 | * constrained by the ExemptionRequest Type. | |
31 | * What about populations such as all athletes, or some other group of | |
32 | * people? | |
33 | * | |
34 | * @author tom | |
35 | * @since Tue Jun 14 14:22:34 EDT 2011 | |
36 | */ | |
37 | public interface ExemptionRequest extends IdEntity { | |
38 | ||
39 | /** | |
40 | * Name: Check Key | |
41 | * The key of a Check that indicates to what | |
42 | * the exemption is applied. | |
43 | */ | |
44 | public String getCheckKey(); | |
45 | ||
46 | /** | |
47 | * Name: Person Id | |
48 | * The Id of the Person making the request. | |
49 | */ | |
50 | public String getPersonId(); | |
51 | ||
52 | /** | |
53 | * Name: Qualifier Type Key | |
54 | * The Type of a Qualifier to scope the Exemption. | |
55 | */ | |
56 | public String getQualifierTypeKey(); | |
57 | ||
58 | /** | |
59 | * Name: Qualifier Id | |
60 | * The Id of a Qualifier to scope the Exemption. | |
61 | */ | |
62 | public String getQualifierId(); | |
63 | ||
64 | /** | |
65 | * Name: Request Date | |
66 | * The date this exemption request. | |
67 | */ | |
68 | public Date getRequestDate(); | |
69 | ||
70 | /** | |
71 | * Name: Approved By Person Id | |
72 | * The Id of the Person who approved this request. | |
73 | */ | |
74 | public String getApprovedByPersonId(); | |
75 | ||
76 | /** | |
77 | * Name: Approved Date | |
78 | * The date this request was approved. | |
79 | */ | |
80 | public Date getApprovedDate(); | |
81 | ||
82 | /** | |
83 | * Name: Restriction Override | |
84 | * The data for a restriction override request. | |
85 | */ | |
86 | public RestrictionOverride getRestrictionOverride(); | |
87 | ||
88 | /** | |
89 | * Name: Date Override | |
90 | * The data for a date override. | |
91 | */ | |
92 | public DateOverride getDateOverride(); | |
93 | ||
94 | /** | |
95 | * Name: Milestone Override | |
96 | * The data for a milestone override. | |
97 | */ | |
98 | public MilestoneOverride getMilestoneOverride(); | |
99 | ||
100 | /** | |
101 | * Name: Hold Override | |
102 | * The data for a hold override. | |
103 | */ | |
104 | public HoldOverride getHoldOverride(); | |
105 | ||
106 | /** | |
107 | * Name: Statement Override | |
108 | * The data for a statement override. | |
109 | */ | |
110 | public StatementOverride getStatementOverride(); | |
111 | ||
112 | /** | |
113 | * Name: Learning Result Override | |
114 | * The data for a learning result override. | |
115 | */ | |
116 | public LearningResultOverride getLearningResultOverride(); | |
117 | } |