public interface CertificateRepository extends org.springframework.data.repository.reactive.ReactiveCrudRepository<Certificate,Long>
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Void> |
deleteByIdIn(List<Long> ids) |
reactor.core.publisher.Mono<Void> |
deleteByOwnerIgnoreCase(String owner) |
reactor.core.publisher.Flux<Certificate> |
findByOwnerIgnoreCase(String owner) |
reactor.core.publisher.Mono<Certificate> |
findByOwnerIgnoreCaseAndThumbprint(String owner,
String tp) |
reactor.core.publisher.Flux<Certificate> |
findByThumbprint(String tb) |
@Transactional @Query(value="select * from certificate c where upper(c.owner) = upper(:owner)") reactor.core.publisher.Flux<Certificate> findByOwnerIgnoreCase(String owner)
@Transactional @Query(value="select * from certificate c where upper(c.owner) = upper(:owner) and c.thumbprint = :tp") reactor.core.publisher.Mono<Certificate> findByOwnerIgnoreCaseAndThumbprint(String owner, String tp)
@Transactional @Query(value="select * from certificate c where c.thumbprint = :tp") reactor.core.publisher.Flux<Certificate> findByThumbprint(String tb)
@Transactional @Query(value="delete from certificate where upper(owner) = upper(:owner)") reactor.core.publisher.Mono<Void> deleteByOwnerIgnoreCase(String owner)
Copyright © 2020. All rights reserved.