blob: 0d3889aeff0072a92bd1e71bccaddc02971eaffd [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.collectionsheet.data;
import java.util.Collection;
import org.apache.fineract.infrastructure.core.data.EnumOptionData;
/**
* Immutable data object for clients with loans due for disbursement or
* collection.
*/
public class JLGClientData {
private final Long clientId;
private final String clientName;
private Collection<LoanDueData> loans;
private Collection<SavingsDueData> savings;
@SuppressWarnings("unused")
private final EnumOptionData attendanceType;
public static JLGClientData instance(final Long clientId, final String clientName, final EnumOptionData attendanceType){
final Collection<LoanDueData> loans = null;
final Collection<SavingsDueData> savings = null;
return new JLGClientData(clientId, clientName, loans, savings, attendanceType);
}
public static JLGClientData withSavings(final JLGClientData client, final Collection<SavingsDueData> savings){
final Collection<LoanDueData> loans = null;
final EnumOptionData attendanceType = null;
return new JLGClientData(client.clientId, client.clientName, loans, savings, attendanceType);
}
/*public JLGClientData(final Long clientId, final String clientName, final Collection<LoanDueData> loans,
final EnumOptionData attendanceType) {
this.clientId = clientId;
this.clientName = clientName;
this.loans = loans;
this.attendanceType = attendanceType;
}*/
public static JLGClientData withAttendance(final Long clientId, final String clientName, final EnumOptionData attendanceType) {
final Collection<LoanDueData> loans = null;
final Collection<SavingsDueData> savings = null;
return new JLGClientData(clientId, clientName, loans, savings, attendanceType);
}
/**
* @param clientId
* @param clientName
* @param loans
* @param savings
* @param attendanceType
*/
private JLGClientData(Long clientId, String clientName, Collection<LoanDueData> loans, Collection<SavingsDueData> savings,
EnumOptionData attendanceType) {
this.clientId = clientId;
this.clientName = clientName;
this.loans = loans;
this.savings = savings;
this.attendanceType = attendanceType;
}
public Long getClientId() {
return this.clientId;
}
public String getClientName() {
return this.clientName;
}
public Collection<LoanDueData> getLoans() {
return this.loans;
}
public void setLoans(final Collection<LoanDueData> loans) {
this.loans = loans;
}
public Collection<SavingsDueData> getSavings() {
return this.savings;
}
public void setSavings(Collection<SavingsDueData> savings) {
this.savings = savings;
}
@Override
public boolean equals(final Object obj) {
final JLGClientData clientData = (JLGClientData) obj;
return clientData.clientId.compareTo(this.clientId) == 0;
}
@Override
public int hashCode() {
return this.clientId.hashCode();
}
}