Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
EnrollmentFee |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2012 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 2.0 (the | |
5 | * "License"); you may not use this file except in compliance with the | |
6 | * License. You may obtain a copy of the License at | |
7 | * | |
8 | * http://www.osedu.org/licenses/ECL-2.0 | |
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 | |
13 | * implied. See the License for the specific language governing | |
14 | * permissions and limitations under the License. | |
15 | */ | |
16 | ||
17 | package org.kuali.student.r2.core.fee.infc; | |
18 | ||
19 | import org.kuali.student.r2.common.infc.IdNamelessEntity; | |
20 | import org.kuali.student.r2.common.infc.RichText; | |
21 | ||
22 | ||
23 | /** | |
24 | * A Fee structure. | |
25 | * | |
26 | * The name "EnrollmentFee" is a temporary name to distinguish this | |
27 | * from Fees in CM. | |
28 | * | |
29 | * @author tom | |
30 | */ | |
31 | public interface EnrollmentFee | |
32 | extends IdNamelessEntity { | |
33 | ||
34 | /** | |
35 | * A description of this fee. | |
36 | * | |
37 | * @name Description | |
38 | */ | |
39 | public RichText getDescr(); | |
40 | ||
41 | /** | |
42 | * The amount associated with the fee. The units of the fee amount | |
43 | * and interpretation depends on the rate type. | |
44 | * | |
45 | * @name Fee Amount | |
46 | */ | |
47 | public EnrollmentFeeAmount getAmount(); | |
48 | ||
49 | /** | |
50 | * Gets the organization responsible for this fee. | |
51 | * | |
52 | * @name Org Id | |
53 | */ | |
54 | public String getOrgId(); | |
55 | ||
56 | /** | |
57 | * Gets the reference object URI. | |
58 | * | |
59 | * @name Reference Object URI | |
60 | */ | |
61 | public String getRefObjectURI(); | |
62 | ||
63 | /** | |
64 | * Gets the reference object. | |
65 | * | |
66 | * @name Reference Object Id | |
67 | */ | |
68 | public String getRefObjectId(); | |
69 | } |