| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Exemption |
|
| 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 org.kuali.student.r2.common.infc.IdEntity; | |
| 19 | import java.util.Date; | |
| 20 | ||
| 21 | ||
| 22 | /** | |
| 23 | * Information about an Exemption. The qualifier, if it exists, | |
| 24 | * qualifies the restriction exemption to a scope, such as for a | |
| 25 | * particular Course or Program. | |
| 26 | * | |
| 27 | * There can only be one override structure per exemption. The | |
| 28 | * override structure available in this Exmeption is constrained by | |
| 29 | * the Exemption Type. | |
| 30 | * | |
| 31 | * org? | |
| 32 | * | |
| 33 | * @author tom | |
| 34 | * @since Tue Jun 14 14:22:34 EDT 2011 | |
| 35 | */ | |
| 36 | public interface Exemption extends IdEntity { | |
| 37 | ||
| 38 | /** | |
| 39 | * Name: Exemption Request Id | |
| 40 | * The Id of the Exemption Request. | |
| 41 | */ | |
| 42 | public String getExemptionRequestId(); | |
| 43 | ||
| 44 | /** | |
| 45 | * Name: Exempted Person Id | |
| 46 | * The Id of the Person exempted. | |
| 47 | */ | |
| 48 | public String getExemptedPersonId(); | |
| 49 | ||
| 50 | /** | |
| 51 | * Name: Qualifier Type Key | |
| 52 | * The Type of a Qualifier to scope the Exemption. | |
| 53 | */ | |
| 54 | public String getQualifierTypeKey(); | |
| 55 | ||
| 56 | /** | |
| 57 | * Name: Qualifier Id | |
| 58 | * The Id of a Qualifier to scope the Exemption. | |
| 59 | */ | |
| 60 | public String getQualifierId(); | |
| 61 | ||
| 62 | /** | |
| 63 | * Name: Effective Date | |
| 64 | * The date this exemption becomes effective. | |
| 65 | */ | |
| 66 | public Date getEffectiveDate(); | |
| 67 | ||
| 68 | /** | |
| 69 | * Name: Expiration Date | |
| 70 | * The date this exemption expires. | |
| 71 | */ | |
| 72 | public Date getExpirationDate(); | |
| 73 | ||
| 74 | /** | |
| 75 | * Name: Use Limit | |
| 76 | * The number of times this Exemption may be used. | |
| 77 | */ | |
| 78 | public Integer getUseLimit(); | |
| 79 | ||
| 80 | /** | |
| 81 | * Name: Use Count | |
| 82 | * The number of times this Exemption was marked as used. | |
| 83 | */ | |
| 84 | public Integer getUseCount(); | |
| 85 | ||
| 86 | /** | |
| 87 | * Name: Restriction Override | |
| 88 | * The data for a restriction override. | |
| 89 | */ | |
| 90 | public RestrictionOverride getRestrictionOverride(); | |
| 91 | ||
| 92 | /** | |
| 93 | * Name: Date Override | |
| 94 | * The data for a date override. | |
| 95 | */ | |
| 96 | public DateOverride getDateOverride(); | |
| 97 | ||
| 98 | /** | |
| 99 | * Name: Milestone Override | |
| 100 | * The data for a milestone override. | |
| 101 | */ | |
| 102 | public MilestoneOverride getMilestoneOverride(); | |
| 103 | ||
| 104 | /** | |
| 105 | * Name: Statement Override | |
| 106 | * The data for a statement override. | |
| 107 | */ | |
| 108 | public StatementOverride getStatementOverride(); | |
| 109 | ||
| 110 | /** | |
| 111 | * Name: Hold Override | |
| 112 | * The data for a hold override. | |
| 113 | */ | |
| 114 | public HoldOverride getHoldOverride(); | |
| 115 | ||
| 116 | /** | |
| 117 | * Name: Learning Result Override | |
| 118 | * The data for a learning result override. | |
| 119 | */ | |
| 120 | public LearningResultOverride getLearningResultOverride(); | |
| 121 | } |