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.endow.businessobject;
017    
018    import java.math.BigDecimal;
019    
020    public class CurrentTaxLotBalance extends HoldingTaxLot {
021    
022        private BigDecimal annualEstimatedIncome;
023        private BigDecimal remainderOfFYEstimatedIncome;
024        private BigDecimal nextFYEstimatedIncome;
025        private BigDecimal securityUnitVal;
026        private BigDecimal holdingMarketValue;
027    
028        /**
029         * Gets the nextFYEstimatedIncome.
030         * 
031         * @return nextFYEstimatedIncome
032         */
033        public BigDecimal getNextFYEstimatedIncome() {
034            return nextFYEstimatedIncome;
035        }
036    
037        /**
038         * Sets the nextFYEstimatedIncome.
039         * 
040         * @param nextFYEstimatedIncome
041         */
042        public void setNextFYEstimatedIncome(BigDecimal nextFYEstimatedIncome) {
043            this.nextFYEstimatedIncome = nextFYEstimatedIncome;
044        }
045    
046        /**
047         * Gets the annualEstimatedIncome.
048         * 
049         * @return annualEstimatedIncome
050         */
051        public BigDecimal getAnnualEstimatedIncome() {
052            return annualEstimatedIncome;
053        }
054    
055        /**
056         * Sets the annualEstimatedIncome.
057         * 
058         * @param annualEstimatedIncome
059         */
060        public void setAnnualEstimatedIncome(BigDecimal annualEstimatedIncome) {
061            this.annualEstimatedIncome = annualEstimatedIncome;
062        }
063    
064        /**
065         * Gets the holdingMarketValue.
066         * 
067         * @return holdingMarketValue
068         */
069        public BigDecimal getHoldingMarketValue() {
070            return holdingMarketValue;
071        }
072    
073        /**
074         * Sets the holdingMarketValue.
075         * 
076         * @param holdingMarketValue
077         */
078        public void setHoldingMarketValue(BigDecimal holdingMarketValue) {
079            this.holdingMarketValue = holdingMarketValue;
080        }
081    
082        /**
083         * Gets the remainderOfFYEstimatedIncome.
084         * 
085         * @return remainderOfFYEstimatedIncome
086         */
087        public BigDecimal getRemainderOfFYEstimatedIncome() {
088            return remainderOfFYEstimatedIncome;
089        }
090    
091        /**
092         * Sets the remainderOfFYEstimatedIncome.
093         * 
094         * @param remainderOfFYEstimatedIncome
095         */
096        public void setRemainderOfFYEstimatedIncome(BigDecimal remainderOfFYEstimatedIncome) {
097            this.remainderOfFYEstimatedIncome = remainderOfFYEstimatedIncome;
098        }
099    
100        /**
101         * Gets the securityUnitVal.
102         * 
103         * @return securityUnitVal
104         */
105        public BigDecimal getSecurityUnitVal() {
106            return securityUnitVal;
107        }
108    
109        /**
110         * Sets the securityUnitVal.
111         * 
112         * @param securityUnitVal
113         */
114        public void setSecurityUnitVal(BigDecimal securityUnitVal) {
115            this.securityUnitVal = securityUnitVal;
116        }
117    
118    }