| 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 | package org.kuali.student.r2.core.exemption.infc; | |
| 16 | ||
| 17 | import java.util.Date; | |
| 18 | import org.kuali.student.r2.common.infc.IdEntity; | |
| 19 | ||
| 20 | /** | |
| 21 | * Information about an ExemptionRequest. | |
| 22 | * | |
| 23 | * The qualifier, if it exists, qualifies the restriction exemption to | |
| 24 | * a scope, such as for a particular Program. | |
| 25 | * | |
| 26 | * There can only be one override structure per exemption request. The | |
| 27 | * override structure available in this ExmeptionRequest is | |
| 28 | * constrained by the ExemptionRequest Type. What about populations | |
| 29 | * such as all athletes, or some other group of people? | |
| 30 | * | |
| 31 | * @author tom | |
| 32 | * @since Tue Jun 14 14:22:34 EDT 2011 | |
| 33 | */ | |
| 34 | public interface ExemptionRequest extends IdEntity { | |
| 35 | ||
| 36 | /** | |
| 37 | * The key of a Process that indicates to what Process in the | |
| 38 | * the exemption is requested, if any. | |
| 39 | * | |
| 40 | * @name Process Key | |
| 41 | * @required | |
| 42 | */ | |
| 43 | public String getProcessKey(); | |
| 44 | ||
| 45 | /** | |
| 46 | * The Id of a Check that indicates to what Check in the Process | |
| 47 | * the exemption is requested, if any. | |
| 48 | * | |
| 49 | * @name Check Id | |
| 50 | */ | |
| 51 | public String getCheckKey(); | |
| 52 | ||
| 53 | /** | |
| 54 | * The Id of the Person for whom the request is requested | |
| 55 | * | |
| 56 | * @name Person Id | |
| 57 | * @required | |
| 58 | */ | |
| 59 | public String getPersonId(); | |
| 60 | ||
| 61 | /** | |
| 62 | * The Id of the Person making the request. | |
| 63 | * | |
| 64 | * This may or may not be the person for who | |
| 65 | * | |
| 66 | * @name Requester Id | |
| 67 | * @required | |
| 68 | */ | |
| 69 | public String getRequesterId(); | |
| 70 | ||
| 71 | /** | |
| 72 | * The date of this exemption request. | |
| 73 | * | |
| 74 | * @name Request Date | |
| 75 | * @required | |
| 76 | */ | |
| 77 | public Date getRequestDate(); | |
| 78 | ||
| 79 | /** | |
| 80 | * The Id of the Person who approved this request. | |
| 81 | * | |
| 82 | * @name Approved By Person Id | |
| 83 | */ | |
| 84 | public String getApprovedByPersonId(); | |
| 85 | ||
| 86 | /** | |
| 87 | * The date this request was approved. | |
| 88 | * | |
| 89 | * @name Approved Date | |
| 90 | */ | |
| 91 | public Date getApprovedDate(); | |
| 92 | ||
| 93 | /** | |
| 94 | * The data for a date override. | |
| 95 | * | |
| 96 | * @name Date Override | |
| 97 | */ | |
| 98 | public DateOverride getDateOverride(); | |
| 99 | ||
| 100 | /** | |
| 101 | * The data for a milestone override. | |
| 102 | * | |
| 103 | * @name Milestone Override | |
| 104 | */ | |
| 105 | public MilestoneOverride getMilestoneOverride(); | |
| 106 | ||
| 107 | /** | |
| 108 | * The data for a learning result override. | |
| 109 | * | |
| 110 | * @name Learning Result Override | |
| 111 | */ | |
| 112 | public LearningResultOverride getLearningResultOverride(); | |
| 113 | } |