blob: 4bee61b9ceb6d650aa25c39d934c6d5e7edd04c1 [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.savings.data;
import java.time.LocalDate;
public final class ClosingOfSavingsAccounts {
private final transient Integer rowIndex;
private final transient Long accountId;
private final LocalDate closedOnDate;
private final Long onAccountClosureId;
private final Long toSavingsAccountId;
private final String dateFormat;
private final String accountType;
private final String locale;
private final String note;
public static ClosingOfSavingsAccounts importInstance(Long accountId, LocalDate closedOnDate, Long onAccountClosureId,
Long toSavingsAccountId, String accountType, Integer rowIndex, String locale, String dateFormat) {
return new ClosingOfSavingsAccounts(accountId, closedOnDate, onAccountClosureId, toSavingsAccountId, accountType, rowIndex, locale,
dateFormat);
}
private ClosingOfSavingsAccounts(Long accountId, LocalDate closedOnDate, Long onAccountClosureId, Long toSavingsAccountId,
String accountType, Integer rowIndex, String locale, String dateFormat) {
this.accountId = accountId;
this.closedOnDate = closedOnDate;
this.onAccountClosureId = onAccountClosureId;
this.toSavingsAccountId = toSavingsAccountId;
this.accountType = accountType;
this.rowIndex = rowIndex;
this.dateFormat = dateFormat;
this.locale = locale;
this.note = "";
}
public Integer getRowIndex() {
return rowIndex;
}
public Long getAccountId() {
return accountId;
}
public LocalDate getClosedOnDate() {
return closedOnDate;
}
public Long getOnAccountClosureId() {
return onAccountClosureId;
}
public Long getToSavingsAccountId() {
return toSavingsAccountId;
}
public String getDateFormat() {
return dateFormat;
}
public String getAccountType() {
return accountType;
}
public String getLocale() {
return locale;
}
public String getNote() {
return note;
}
}