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 BudgetConstructionOrgAccountFundingDetailReportTotal { 024 private BudgetConstructionObjectDump budgetConstructionObjectDump; 025 026 private Integer totalObjectPositionCsfAmount; 027 private Integer totalObjectAppointmentRequestedAmount; 028 private BigDecimal totalObjectPositionCsfFteQuantity; 029 private BigDecimal totalObjectAppointmentRequestedFteQuantity; 030 031 private Integer totalAccountPositionCsfAmount; 032 private Integer totalAccountAppointmentRequestedAmount; 033 private BigDecimal totalAccountPositionCsfFteQuantity; 034 private BigDecimal totalAccountAppointmentRequestedFteQuantity; 035 036 /** 037 * Default constructor. 038 */ 039 public BudgetConstructionOrgAccountFundingDetailReportTotal() { 040 } 041 042 043 public Integer getTotalAccountAppointmentRequestedAmount() { 044 return totalAccountAppointmentRequestedAmount; 045 } 046 047 public void setTotalAccountAppointmentRequestedAmount(Integer totalAccountAppointmentRequestedAmount) { 048 this.totalAccountAppointmentRequestedAmount = totalAccountAppointmentRequestedAmount; 049 } 050 051 public BigDecimal getTotalAccountAppointmentRequestedFteQuantity() { 052 return totalAccountAppointmentRequestedFteQuantity; 053 } 054 055 public void setTotalAccountAppointmentRequestedFteQuantity(BigDecimal totalAccountAppointmentRequestedFteQuantity) { 056 this.totalAccountAppointmentRequestedFteQuantity = totalAccountAppointmentRequestedFteQuantity; 057 } 058 059 public Integer getTotalAccountPositionCsfAmount() { 060 return totalAccountPositionCsfAmount; 061 } 062 063 public void setTotalAccountPositionCsfAmount(Integer totalAccountPositionCsfAmount) { 064 this.totalAccountPositionCsfAmount = totalAccountPositionCsfAmount; 065 } 066 067 public BigDecimal getTotalAccountPositionCsfFteQuantity() { 068 return totalAccountPositionCsfFteQuantity; 069 } 070 071 public void setTotalAccountPositionCsfFteQuantity(BigDecimal totalAccountPositionCsfFteQuantity) { 072 this.totalAccountPositionCsfFteQuantity = totalAccountPositionCsfFteQuantity; 073 } 074 075 public Integer getTotalObjectAppointmentRequestedAmount() { 076 return totalObjectAppointmentRequestedAmount; 077 } 078 079 public void setTotalObjectAppointmentRequestedAmount(Integer totalObjectAppointmentRequestedAmount) { 080 this.totalObjectAppointmentRequestedAmount = totalObjectAppointmentRequestedAmount; 081 } 082 083 public BigDecimal getTotalObjectAppointmentRequestedFteQuantity() { 084 return totalObjectAppointmentRequestedFteQuantity; 085 } 086 087 public void setTotalObjectAppointmentRequestedFteQuantity(BigDecimal totalObjectAppointmentRequestedFteQuantity) { 088 this.totalObjectAppointmentRequestedFteQuantity = totalObjectAppointmentRequestedFteQuantity; 089 } 090 091 public Integer getTotalObjectPositionCsfAmount() { 092 return totalObjectPositionCsfAmount; 093 } 094 095 public void setTotalObjectPositionCsfAmount(Integer totalObjectPositionCsfAmount) { 096 this.totalObjectPositionCsfAmount = totalObjectPositionCsfAmount; 097 } 098 099 public BigDecimal getTotalObjectPositionCsfFteQuantity() { 100 return totalObjectPositionCsfFteQuantity; 101 } 102 103 public void setTotalObjectPositionCsfFteQuantity(BigDecimal totalObjectPositionCsfFteQuantity) { 104 this.totalObjectPositionCsfFteQuantity = totalObjectPositionCsfFteQuantity; 105 } 106 107 108 public BudgetConstructionObjectDump getBudgetConstructionObjectDump() { 109 return budgetConstructionObjectDump; 110 } 111 112 113 public void setBudgetConstructionObjectDump(BudgetConstructionObjectDump budgetConstructionObjectDump) { 114 this.budgetConstructionObjectDump = budgetConstructionObjectDump; 115 } 116 117 118 }