Package de.adorsys.ledgers.cleanup
Interface DepositAccountCleanupRepository
-
- All Known Implementing Classes:
DepositAccountCleanupRepositoryImpl
public interface DepositAccountCleanupRepository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteAccount(String accountId)voiddeleteBranch(String branchId)voiddeletePostings(String id)voiddeleteUser(String userId)voidrollBackBranch(String branch, LocalDateTime revertTimestamp)
-
-
-
Method Detail
-
deleteBranch
void deleteBranch(String branchId) throws CleanupModuleException
- Throws:
CleanupModuleException
-
deleteUser
void deleteUser(String userId) throws CleanupModuleException
- Throws:
CleanupModuleException
-
deleteAccount
void deleteAccount(String accountId) throws CleanupModuleException
- Throws:
CleanupModuleException
-
deletePostings
void deletePostings(String id) throws CleanupModuleException
- Throws:
CleanupModuleException
-
rollBackBranch
void rollBackBranch(String branch, LocalDateTime revertTimestamp) throws CleanupModuleException
- Throws:
CleanupModuleException
-
-