/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kfs.module.ar.report; import java.math.BigDecimal; import java.sql.Date; public class ContractsGrantsMilestoneReportDetailDataHolder { private Long proposalNumber; private String chartOfAccountsCode; private String accountNumber; private Long milestoneNumber; private BigDecimal milestoneAmount; private Date milestoneExpectedCompletionDate; private String billed; private String active; private String sortedFieldValue; private BigDecimal subTotal; public boolean displaySubtotal; /** * Gets the proposalNumber attribute. * * @return Returns the proposalNumber. */ public Long getProposalNumber() { return proposalNumber; } /** * Sets the proposalNumber attribute value. * * @param proposalNumber The proposalNumber to set. */ public void setProposalNumber(Long proposalNumber) { this.proposalNumber = proposalNumber; } public String getChartOfAccountsCode() { return chartOfAccountsCode; } public void setChartOfAccountsCode(String chartOfAccountsCode) { this.chartOfAccountsCode = chartOfAccountsCode; } /** * Gets the accountNumber attribute. * * @return Returns the accountNumber. */ public String getAccountNumber() { return accountNumber; } /** * Sets the accountNumber attribute value. * * @param accountNumber The accountNumber to set. */ public void setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; } /** * Gets the milestoneNumber attribute. * * @return Returns the milestoneNumber. */ public Long getMilestoneNumber() { return milestoneNumber; } /** * Sets the milestoneNumber attribute value. * * @param milestoneNumber The milestoneNumber to set. */ public void setMilestoneNumber(Long milestoneNumber) { this.milestoneNumber = milestoneNumber; } /** * Gets the milestoneAmount attribute. * * @return Returns the milestoneAmount. */ public BigDecimal getMilestoneAmount() { return milestoneAmount; } /** * Sets the milestoneAmount attribute value. * * @param milestoneAmount The milestoneAmount to set. */ public void setMilestoneAmount(BigDecimal milestoneAmount) { this.milestoneAmount = milestoneAmount; } /** * Gets the milestoneExpectedCompletionDate attribute. * * @return Returns the milestoneExpectedCompletionDate. */ public Date getMilestoneExpectedCompletionDate() { return milestoneExpectedCompletionDate; } /** * Sets the milestoneExpectedCompletionDate attribute value. * * @param milestoneExpectedCompletionDate The milestoneExpectedCompletionDate to set. */ public void setMilestoneExpectedCompletionDate(Date milestoneExpectedCompletionDate) { this.milestoneExpectedCompletionDate = milestoneExpectedCompletionDate; } public String getBilled() { return billed; } public void setBilled(String billed) { this.billed = billed; } public String getActive() { return active; } public void setActive(String active) { this.active = active; } /** * Gets the sortedFieldValue attribute. * * @return Returns the sortedFieldValue. */ public String getSortedFieldValue() { return sortedFieldValue; } /** * Sets the sortedFieldValue attribute value. * * @param sortedFieldValue The sortedFieldValue to set. */ public void setSortedFieldValue(String sortedFieldValue) { this.sortedFieldValue = sortedFieldValue; } /** * Gets the subTotal attribute. * * @return Returns the subTotal. */ public BigDecimal getSubTotal() { return subTotal; } /** * Sets the subTotal attribute value. * * @param subTotal The subTotal to set. */ public void setSubTotal(BigDecimal subTotal) { this.subTotal = subTotal; } /** * Gets the displaySubtotal attribute. * * @return Returns the displaySubtotal. */ public boolean isDisplaySubtotal() { return displaySubtotal; } /** * Sets the displaySubtotal attribute value. * * @param displaySubtotal The displaySubtotal to set. */ public void setDisplaySubtotal(boolean displaySubtotal) { this.displaySubtotal = displaySubtotal; } }