Interface AisConsentTransactionRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<AisConsentTransaction,Long>,org.springframework.data.repository.Repository<AisConsentTransaction,Long>
public interface AisConsentTransactionRepository extends org.springframework.data.repository.CrudRepository<AisConsentTransaction,Long>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<AisConsentTransaction>findByConsentIdAndResourceId(Long consentId, String resourceId, org.springframework.data.domain.Pageable pageable)
-
-
-
Method Detail
-
findByConsentIdAndResourceId
@Query("SELECT act FROM AisConsentTransaction act WHERE act.consentId.id = :consentId AND act.resourceId = :resourceId") List<AisConsentTransaction> findByConsentIdAndResourceId(@Param("consentId") Long consentId, @Param("resourceId") String resourceId, org.springframework.data.domain.Pageable pageable)
-
-