001 /* 002 * Copyright 2011 The Kuali Foundation. 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.kfs.module.bc.businessobject; 017 018 import java.math.BigDecimal; 019 020 /** 021 * Total Part of Budget Construction Organization Account Funding Detail Total Business Object. 022 */ 023 public class BudgetConstructionOrgPositionFundingDetailReportTotal { 024 private BudgetConstructionPositionFunding budgetConstructionPositionFunding; 025 026 private Integer totalPersonPositionCsfAmount; 027 private Integer totalPersonAppointmentRequestedAmount; 028 private BigDecimal totalPersonPositionCsfFteQuantity; 029 private BigDecimal totalPersonAppointmentRequestedFteQuantity; 030 031 private Integer totalOrgPositionCsfAmount; 032 private Integer totalOrgAppointmentRequestedAmount; 033 private BigDecimal totalOrgPositionCsfFteQuantity; 034 private BigDecimal totalOrgAppointmentRequestedFteQuantity; 035 036 private Integer personSortCode; 037 038 039 040 /** 041 * Default constructor. 042 */ 043 public BudgetConstructionOrgPositionFundingDetailReportTotal() { 044 } 045 046 public Integer getPersonSortCode() { 047 return personSortCode; 048 } 049 050 051 public void setPersonSortCode(Integer personSortCode) { 052 this.personSortCode = personSortCode; 053 } 054 055 056 public BudgetConstructionPositionFunding getBudgetConstructionPositionFunding() { 057 return budgetConstructionPositionFunding; 058 } 059 060 public void setBudgetConstructionPositionFunding(BudgetConstructionPositionFunding budgetConstructionPositionFunding) { 061 this.budgetConstructionPositionFunding = budgetConstructionPositionFunding; 062 } 063 064 public Integer getTotalOrgAppointmentRequestedAmount() { 065 return totalOrgAppointmentRequestedAmount; 066 } 067 068 public void setTotalOrgAppointmentRequestedAmount(Integer totalOrgAppointmentRequestedAmount) { 069 this.totalOrgAppointmentRequestedAmount = totalOrgAppointmentRequestedAmount; 070 } 071 072 public BigDecimal getTotalOrgAppointmentRequestedFteQuantity() { 073 return totalOrgAppointmentRequestedFteQuantity; 074 } 075 076 public void setTotalOrgAppointmentRequestedFteQuantity(BigDecimal totalOrgAppointmentRequestedFteQuantity) { 077 this.totalOrgAppointmentRequestedFteQuantity = totalOrgAppointmentRequestedFteQuantity; 078 } 079 080 public Integer getTotalOrgPositionCsfAmount() { 081 return totalOrgPositionCsfAmount; 082 } 083 084 public void setTotalOrgPositionCsfAmount(Integer totalOrgPositionCsfAmount) { 085 this.totalOrgPositionCsfAmount = totalOrgPositionCsfAmount; 086 } 087 088 public BigDecimal getTotalOrgPositionCsfFteQuantity() { 089 return totalOrgPositionCsfFteQuantity; 090 } 091 092 public void setTotalOrgPositionCsfFteQuantity(BigDecimal totalOrgPositionCsfFteQuantity) { 093 this.totalOrgPositionCsfFteQuantity = totalOrgPositionCsfFteQuantity; 094 } 095 096 public Integer getTotalPersonAppointmentRequestedAmount() { 097 return totalPersonAppointmentRequestedAmount; 098 } 099 100 public void setTotalPersonAppointmentRequestedAmount(Integer totalPersonAppointmentRequestedAmount) { 101 this.totalPersonAppointmentRequestedAmount = totalPersonAppointmentRequestedAmount; 102 } 103 104 public BigDecimal getTotalPersonAppointmentRequestedFteQuantity() { 105 return totalPersonAppointmentRequestedFteQuantity; 106 } 107 108 public void setTotalPersonAppointmentRequestedFteQuantity(BigDecimal totalPersonAppointmentRequestedFteQuantity) { 109 this.totalPersonAppointmentRequestedFteQuantity = totalPersonAppointmentRequestedFteQuantity; 110 } 111 112 public Integer getTotalPersonPositionCsfAmount() { 113 return totalPersonPositionCsfAmount; 114 } 115 116 public void setTotalPersonPositionCsfAmount(Integer totalPersonPositionCsfAmount) { 117 this.totalPersonPositionCsfAmount = totalPersonPositionCsfAmount; 118 } 119 120 public BigDecimal getTotalPersonPositionCsfFteQuantity() { 121 return totalPersonPositionCsfFteQuantity; 122 } 123 124 public void setTotalPersonPositionCsfFteQuantity(BigDecimal totalPersonPositionCsfFteQuantity) { 125 this.totalPersonPositionCsfFteQuantity = totalPersonPositionCsfFteQuantity; 126 } 127 128 129 130 }