Interface TransactionRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<Transaction,Long>, org.springframework.data.jpa.repository.JpaRepository<Transaction,Long>, org.springframework.data.repository.PagingAndSortingRepository<Transaction,Long>, org.springframework.data.repository.query.QueryByExampleExecutor<Transaction>, org.springframework.data.repository.Repository<Transaction,Long>

public interface TransactionRepository extends org.springframework.data.jpa.repository.JpaRepository<Transaction,Long>
  • Method Summary

    Modifier and Type
    Method
    Description
    Finds transactions by account ID.
    Returns a list of transactions that match the given reference ID.

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findTransactionByAccountId

      List<Transaction> findTransactionByAccountId(String accountId)
      Finds transactions by account ID.
      Parameters:
      accountId - the ID of the account
      Returns:
      a list of transactions
    • findTransactionByReferenceId

      List<Transaction> findTransactionByReferenceId(String referenceId)
      Returns a list of transactions that match the given reference ID.
      Parameters:
      referenceId - The reference ID to match against.
      Returns:
      The list of transactions that match the reference ID.