public interface AddressRepository extends org.springframework.data.jpa.repository.JpaRepository<Address,Long>
| Modifier and Type | Method and Description |
|---|---|
void |
deleteByEmailAddressIgnoreCase(String emailAddress) |
List<Address> |
findByDomain(Domain domain) |
Address |
findByEmailAddressIgnoreCase(String emailAddress) |
List<Address> |
findByEmailAddressInIgnoreCaseAndStatus(List<String> emailAddresses,
EntityStatus status) |
List<Address> |
findByEndpointIgnoreCase(String endpoint) |
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlushfindAll@Query(value="select a from Address a where upper(a.emailAddress) in :emailAddresses and a.status = :status") List<Address> findByEmailAddressInIgnoreCaseAndStatus(@Param(value="emailAddresses") List<String> emailAddresses, @Param(value="status") EntityStatus status)
void deleteByEmailAddressIgnoreCase(String emailAddress)
Copyright © 2019. All rights reserved.