Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
CreditsEarned |
|
| 1.0;1 |
1 | /** | |
2 | * Copyright 2010 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may | |
3 | * not use this file except in compliance with the License. You may obtain a copy of the License at | |
4 | * http://www.osedu.org/licenses/ECL-2.0 Unless required by applicable law or agreed to in writing, software distributed | |
5 | * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | |
6 | * implied. See the License for the specific language governing permissions and limitations under the License. | |
7 | */ | |
8 | ||
9 | package org.kuali.student.enrollment.grading.infc; | |
10 | ||
11 | import org.kuali.student.r2.common.infc.HasAttributesAndMeta; | |
12 | import org.kuali.student.r2.common.infc.HasId; | |
13 | ||
14 | /** | |
15 | * Information about an assigned grade in a roster entry | |
16 | * | |
17 | * @author Kuali Student Team (Kamal) | |
18 | */ | |
19 | ||
20 | public interface CreditsEarned extends HasId, HasAttributesAndMeta { | |
21 | ||
22 | /** | |
23 | * Credit group to which the credit belongs | |
24 | * | |
25 | * @name Credit Group Id | |
26 | * @impl maps to LearningResultRecord.resultValueGroupId in LRR | |
27 | */ | |
28 | public String getCreditGroupId(); | |
29 | ||
30 | /** | |
31 | * Credit Earned | |
32 | * | |
33 | * @name Credit | |
34 | * @impl maps to ResultValue.value in LRC where resultValue.Id = LearningResultRecord.resultValueId in LRR. The | |
35 | * resultSourceId in the LRR should be sourceId for source used for credit calculation. In case the credits are | |
36 | * manually entered, the source should be of manually set credits | |
37 | */ | |
38 | public String getCredit(); | |
39 | ||
40 | } |