blob: 90bb3086172f5fe38456b07bb910adaf89de0606 [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.service;
import java.time.LocalDate;
import org.apache.fineract.infrastructure.core.api.JsonCommand;
import org.apache.fineract.infrastructure.core.data.CommandProcessingResult;
import org.apache.fineract.organisation.office.domain.Office;
import org.apache.fineract.organisation.staff.domain.Staff;
import org.apache.fineract.portfolio.savings.DepositAccountType;
import org.apache.fineract.portfolio.savings.data.SavingsAccountTransactionDTO;
import org.apache.fineract.portfolio.savings.domain.SavingsAccountTransaction;
public interface DepositAccountWritePlatformService {
CommandProcessingResult activateFDAccount(Long savingsId, JsonCommand command);
CommandProcessingResult activateRDAccount(Long savingsId, JsonCommand command);
CommandProcessingResult updateDepositAmountForRDAccount(Long savingsId, JsonCommand command);
CommandProcessingResult depositToFDAccount(Long savingsId, JsonCommand command);
CommandProcessingResult depositToRDAccount(Long savingsId, JsonCommand command);
CommandProcessingResult withdrawal(Long savingsId, JsonCommand command, DepositAccountType depositAccountType);
CommandProcessingResult calculateInterest(Long savingsId, DepositAccountType depositAccountType);
CommandProcessingResult postInterest(Long savingsId, DepositAccountType depositAccountType);
CommandProcessingResult undoFDTransaction(Long savingsId, Long transactionId, boolean allowAccountTransferModification);
CommandProcessingResult undoRDTransaction(Long savingsId, Long transactionId, boolean allowAccountTransferModification);
CommandProcessingResult adjustFDTransaction(Long savingsId, Long transactionId, JsonCommand command);
CommandProcessingResult adjustRDTransaction(Long savingsId, Long transactionId, JsonCommand command);
CommandProcessingResult closeFDAccount(Long savingsId, JsonCommand command);
CommandProcessingResult closeRDAccount(Long savingsId, JsonCommand command);
CommandProcessingResult prematureCloseFDAccount(Long savingsId, JsonCommand command);
CommandProcessingResult prematureCloseRDAccount(Long savingsId, JsonCommand command);
SavingsAccountTransaction initiateSavingsTransfer(Long accountId, LocalDate transferDate, DepositAccountType depositAccountType);
SavingsAccountTransaction withdrawSavingsTransfer(Long accountId, LocalDate transferDate, DepositAccountType depositAccountType);
void rejectSavingsTransfer(Long accountId, DepositAccountType depositAccountType);
SavingsAccountTransaction acceptSavingsTransfer(Long accountId, LocalDate transferDate, Office acceptedInOffice, Staff staff,
DepositAccountType depositAccountType);
CommandProcessingResult addSavingsAccountCharge(JsonCommand command, DepositAccountType depositAccountType);
CommandProcessingResult updateSavingsAccountCharge(JsonCommand command, DepositAccountType depositAccountType);
CommandProcessingResult deleteSavingsAccountCharge(Long savingsAccountId, Long savingsAccountChargeId, JsonCommand command,
DepositAccountType depositAccountType);
CommandProcessingResult waiveCharge(Long savingsAccountId, Long savingsAccountChargeId, DepositAccountType depositAccountType);
CommandProcessingResult payCharge(Long savingsAccountId, Long savingsAccountChargeId, JsonCommand command,
DepositAccountType depositAccountType);
void applyChargeDue(Long savingsAccountChargeId, Long accountId, DepositAccountType depositAccountType);
void updateMaturityDetails(Long depositAccountId, DepositAccountType depositAccountType);
SavingsAccountTransaction mandatorySavingsAccountDeposit(SavingsAccountTransactionDTO accountTransactionDTO);
}