public interface TrustBundleDomainReltnRepository extends org.springframework.data.repository.reactive.ReactiveCrudRepository<TrustBundleDomainReltn,Long>
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Void> |
deleteByDomainId(Long domainId) |
reactor.core.publisher.Mono<Void> |
deleteByDomainIdAndTrustBundleId(Long domainId,
Long trustBundleId) |
reactor.core.publisher.Mono<Void> |
deleteByTrustBundleId(Long trustBundleId) |
reactor.core.publisher.Flux<TrustBundleDomainReltn> |
findByDomainId(Long domainId) |
@Transactional @Query(value="select * from trustbundledomainreltn r where r.domain_id = :domainId") reactor.core.publisher.Flux<TrustBundleDomainReltn> findByDomainId(Long domainId)
@Transactional @Query(value="delete from trustbundledomainreltn where domain_id = :domainId") reactor.core.publisher.Mono<Void> deleteByDomainId(Long domainId)
@Transactional @Query(value="delete from trustbundledomainreltn where trust_bundle_id = :trustBundleId") reactor.core.publisher.Mono<Void> deleteByTrustBundleId(Long trustBundleId)
Copyright © 2020. All rights reserved.