blob: 3a4883bcdf2bb9db5a318cde4e74f2f877c2be35 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.fineract.portfolio.loanaccount.loanschedule.data;
import java.math.BigDecimal;
import java.util.Collection;
import org.apache.fineract.organisation.monetary.data.CurrencyData;
/**
* Immutable data object to represent aspects of a loan schedule such as:
*
* <ul>
* <li>Totals information - the totals for each part of repayment schedule
* monitored.</li>
* <li>Repayment schedule - the principal due, outstanding balance and cost of
* loan items such as interest and charges (both fees and penalties)</li>
* </ul>
*/
@SuppressWarnings("unused")
public class LoanScheduleData {
/**
* The currency associated with all monetary values in loan schedule.
*/
private final CurrencyData currency;
private final Integer loanTermInDays;
private final BigDecimal totalPrincipalDisbursed;
private final BigDecimal totalPrincipalExpected;
private final BigDecimal totalPrincipalPaid;
private final BigDecimal totalInterestCharged;
private final BigDecimal totalFeeChargesCharged;
private final BigDecimal totalPenaltyChargesCharged;
private final BigDecimal totalWaived;
private final BigDecimal totalWrittenOff;
private final BigDecimal totalRepaymentExpected;
private final BigDecimal totalRepayment;
private final BigDecimal totalPaidInAdvance;
private final BigDecimal totalPaidLate;
private final BigDecimal totalOutstanding;
/**
* <code>periods</code> is collection of data objects containing specific
* information to each period of the loan schedule including disbursement
* and repayment information.
*/
private final Collection<LoanSchedulePeriodData> periods;
private Collection<LoanSchedulePeriodData> futurePeriods;
public LoanScheduleData(final CurrencyData currency, final Collection<LoanSchedulePeriodData> periods, final Integer loanTermInDays,
final BigDecimal totalPrincipalDisbursed, final BigDecimal totalPrincipalExpected, final BigDecimal totalPrincipalPaid,
final BigDecimal totalInterestCharged, final BigDecimal totalFeeChargesCharged, final BigDecimal totalPenaltyChargesCharged,
final BigDecimal totalWaived, final BigDecimal totalWrittenOff, final BigDecimal totalRepaymentExpected,
final BigDecimal totalRepayment, final BigDecimal totalPaidInAdvance, final BigDecimal totalPaidLate,
final BigDecimal totalOutstanding) {
this.currency = currency;
this.periods = periods;
this.loanTermInDays = loanTermInDays;
this.totalPrincipalDisbursed = totalPrincipalDisbursed;
this.totalPrincipalExpected = totalPrincipalExpected;
this.totalPrincipalPaid = totalPrincipalPaid;
this.totalInterestCharged = totalInterestCharged;
this.totalFeeChargesCharged = totalFeeChargesCharged;
this.totalPenaltyChargesCharged = totalPenaltyChargesCharged;
this.totalWaived = totalWaived;
this.totalWrittenOff = totalWrittenOff;
this.totalRepaymentExpected = totalRepaymentExpected;
this.totalRepayment = totalRepayment;
this.totalPaidInAdvance = totalPaidInAdvance;
this.totalPaidLate = totalPaidLate;
this.totalOutstanding = totalOutstanding;
}
public LoanScheduleData(final CurrencyData currency, final Collection<LoanSchedulePeriodData> periods, final Integer loanTermInDays,
final BigDecimal totalPrincipalDisbursed, final BigDecimal totalPrincipalExpected, final BigDecimal totalInterestCharged,
final BigDecimal totalFeeChargesCharged, final BigDecimal totalPenaltyChargesCharged, final BigDecimal totalRepaymentExpected) {
this.currency = currency;
this.periods = periods;
this.loanTermInDays = loanTermInDays;
this.totalPrincipalDisbursed = totalPrincipalDisbursed;
this.totalPrincipalExpected = totalPrincipalExpected;
this.totalPrincipalPaid = null;
this.totalInterestCharged = totalInterestCharged;
this.totalFeeChargesCharged = totalFeeChargesCharged;
this.totalPenaltyChargesCharged = totalPenaltyChargesCharged;
this.totalWaived = null;
this.totalWrittenOff = null;
this.totalRepaymentExpected = totalRepaymentExpected;
this.totalRepayment = null;
this.totalPaidInAdvance = null;
this.totalPaidLate = null;
this.totalOutstanding = null;
}
public Collection<LoanSchedulePeriodData> getPeriods() {
return this.periods;
}
public void updateFuturePeriods(Collection<LoanSchedulePeriodData> futurePeriods) {
this.futurePeriods = futurePeriods;
}
}