01: /*
02: * Copyright 2006-2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
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.module.kra.budget.service;
17:
18: import java.util.HashMap;
19: import java.util.List;
20:
21: import org.kuali.core.util.KualiDecimal;
22: import org.kuali.core.util.KualiInteger;
23: import org.kuali.module.kra.budget.bo.BudgetFringeRate;
24: import org.kuali.module.kra.budget.bo.BudgetPeriod;
25: import org.kuali.module.kra.budget.bo.BudgetUser;
26: import org.kuali.module.kra.budget.document.BudgetDocument;
27:
28: /**
29: * This class...
30: */
31: public interface BudgetPersonnelService {
32:
33: public void createPersonnelDetail(BudgetUser budgetUser,
34: BudgetDocument budgetDocument);
35:
36: public KualiInteger calculatePeriodSalary(BudgetUser budgetUser,
37: BudgetFringeRate budgetFringeRate, BudgetPeriod period,
38: KualiDecimal inflationRate);
39:
40: public void calculatePersonSalary(BudgetUser budgetUser,
41: BudgetDocument budgetDocument);
42:
43: public void calculatePersonRequestAmounts(BudgetUser budgetUser,
44: List budgetFringeRates);
45:
46: public void calculatePersonCompensation(BudgetUser budgetUser,
47: BudgetDocument budgetDocument);
48:
49: public void calculateAllPersonnelCompensation(
50: BudgetDocument budgetDocument);
51:
52: public void reconcileAllPersonnelTaskPeriod(
53: BudgetDocument budgetDocument);
54:
55: public void reconcilePersonTaskPeriod(BudgetUser budgetUser,
56: BudgetDocument budgetDocument);
57:
58: public HashMap getAppointmentTypeMappings();
59:
60: public void cleansePersonnel(BudgetDocument budgetDocument);
61:
62: public void reconcileProjectDirector(BudgetDocument budgetDocument);
63:
64: public void reconcileAndCalculatePersonnel(
65: BudgetDocument budgetDocument);
66:
67: }
|