Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Fee |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2011 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 1.0 (the "License"); | |
5 | * you may not use this file except in compliance with the License. | |
6 | * You may obtain a copy of the License at | |
7 | * | |
8 | * http://www.opensource.org/licenses/ecl1.php | |
9 | * | |
10 | * Unless required by applicable law or agreed to in writing, software | |
11 | * distributed under the License is distributed on an "AS IS" BASIS, | |
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
13 | * See the License for the specific language governing permissions and | |
14 | * limitations under the License. | |
15 | */ | |
16 | package org.kuali.student.r2.lum.lu.infc; | |
17 | ||
18 | import java.util.List; | |
19 | ||
20 | import org.kuali.student.r2.common.infc.CurrencyAmount; | |
21 | import org.kuali.student.r2.common.infc.HasAttributesAndMeta; | |
22 | import org.kuali.student.r2.common.infc.HasId; | |
23 | import org.kuali.student.r2.common.infc.RichText; | |
24 | ||
25 | /** | |
26 | * Information about a fee related to an learning unit | |
27 | */ | |
28 | public interface Fee extends HasId, HasAttributesAndMeta{ | |
29 | ||
30 | /** | |
31 | * A code that identifies the type of the fee. For example: Lab Fee or Tuition Fee or CMF for Course Materials Fee. | |
32 | * From a program perspective it may be an application fee. | |
33 | * @name: Fee Type | |
34 | */ | |
35 | public String getFeeType(); | |
36 | ||
37 | /** | |
38 | * Indicates the structure and interpretation of the fee amounts, i.e. Fixed, Variable, Multiple. | |
39 | * @name Rate Type | |
40 | */ | |
41 | public String getRateType(); | |
42 | ||
43 | /** | |
44 | * The amount or amounts associated with the fee. The number fee amounts and interpretation depends on the rate type. | |
45 | * @name Fee Amounts | |
46 | */ | |
47 | public List<? extends CurrencyAmount> getFeeAmounts(); | |
48 | ||
49 | /** | |
50 | * Narrative description of the Fee. | |
51 | * @name Description | |
52 | */ | |
53 | public RichText getDescr(); | |
54 | } |