/* * 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.businessobject; import java.sql.Date; import java.util.LinkedHashMap; import org.kuali.kfs.integration.cg.ContractsAndGrantsBillingAward; import org.kuali.kfs.integration.cg.ContractsAndGrantsModuleBillingService; import org.kuali.kfs.sys.context.SpringContext; import org.kuali.rice.core.api.mo.common.active.MutableInactivatable; /** * Milestone to be used for Milestone Schedule under Contracts & Grants */ public class Milestone extends MilestoneBase implements MutableInactivatable { private Long proposalNumber; private Date milestoneExpectedCompletionDate; private boolean billed = false; private boolean active; private ContractsAndGrantsBillingAward award; public Long getProposalNumber() { return proposalNumber; } public void setProposalNumber(Long proposalNumber) { this.proposalNumber = proposalNumber; } /** * 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 boolean isBilled() { return billed; } public void setBilled(boolean billed) { this.billed = billed; } @Override public boolean isActive() { return active; } @Override public void setActive(boolean active) { this.active = active; } /** * Gets the award attribute. * * @return Returns the award. */ public ContractsAndGrantsBillingAward getAward() { award = SpringContext.getBean(ContractsAndGrantsModuleBillingService.class).updateAwardIfNecessary(proposalNumber, award); return award; } /** * Sets the award attribute value. * * @param award The award to set. */ public void setAward(ContractsAndGrantsBillingAward award) { this.award = award; } /** * @see org.kuali.rice.krad.bo.BusinessObjectBase#toStringMapper() */ @Override protected LinkedHashMap toStringMapper_RICE20_REFACTORME() { LinkedHashMap m = super.toStringMapper_RICE20_REFACTORME(); m.put("proposalNumber", proposalNumber); m.put("billed", billed); return m; } }