Package com.skava.marketplace.repository
Interface WebhookStoreAppRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<WebhookStoreApps,
,String> org.springframework.data.repository.ListCrudRepository<WebhookStoreApps,
,String> org.springframework.data.repository.ListPagingAndSortingRepository<WebhookStoreApps,
,String> org.springframework.data.mongodb.repository.MongoRepository<WebhookStoreApps,
,String> org.springframework.data.repository.PagingAndSortingRepository<WebhookStoreApps,
,String> org.springframework.data.repository.query.QueryByExampleExecutor<WebhookStoreApps>
,org.springframework.data.querydsl.QuerydslPredicateExecutor<WebhookStoreApps>
,org.springframework.data.repository.Repository<WebhookStoreApps,
String>
public interface WebhookStoreAppRepository
extends org.springframework.data.mongodb.repository.MongoRepository<WebhookStoreApps,String>, org.springframework.data.querydsl.QuerydslPredicateExecutor<WebhookStoreApps>
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.data.domain.Page<WebhookStoreApps>
findByActive
(boolean active, org.springframework.data.domain.Pageable pageRequest) org.springframework.data.domain.Page<WebhookStoreApps>
findByActiveAndWebhookNameIn
(boolean active, List<String> webhookName, org.springframework.data.domain.Pageable pageRequest) findByActiveAndWebhookType
(boolean active, com.skava.core.response.marketplace.WebhookType webhookType) findByAppIdAndAppVersionAndStoreIdAndArchiveNot
(String appId, String appVersion, String storeId, boolean archive) findByAppIdAndAppVersionAndStoreIdAndServiceCollectionIdAndWebhookNameAndWebhookTypeAndArchiveNot
(String appId, String appVersion, String storeId, String serviceCollectionId, String webhookName, com.skava.core.response.marketplace.WebhookType webhookType, boolean archive) org.springframework.data.domain.Page<WebhookStoreApps>
findByWebhookNameIn
(List<String> webhookName, org.springframework.data.domain.Pageable pageRequest) 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.repository.ListCrudRepository
findAll, findAllById, saveAll
Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.mongodb.repository.MongoRepository
findAll, findAll, insert, insert
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
Methods inherited from interface org.springframework.data.querydsl.QuerydslPredicateExecutor
count, exists, findAll, findAll, findAll, findAll, findAll, findBy, findOne
-
Method Details
-
findByActiveAndWebhookNameIn
org.springframework.data.domain.Page<WebhookStoreApps> findByActiveAndWebhookNameIn(boolean active, List<String> webhookName, org.springframework.data.domain.Pageable pageRequest) -
findByWebhookNameIn
org.springframework.data.domain.Page<WebhookStoreApps> findByWebhookNameIn(List<String> webhookName, org.springframework.data.domain.Pageable pageRequest) -
findByActive
org.springframework.data.domain.Page<WebhookStoreApps> findByActive(boolean active, org.springframework.data.domain.Pageable pageRequest) -
findByAppIdAndAppVersionAndStoreIdAndServiceCollectionIdAndWebhookNameAndWebhookTypeAndArchiveNot
-
findByAppIdAndAppVersionAndStoreIdAndArchiveNot
List<WebhookStoreApps> findByAppIdAndAppVersionAndStoreIdAndArchiveNot(String appId, String appVersion, String storeId, boolean archive) -
findByActiveAndWebhookType
List<WebhookStoreApps> findByActiveAndWebhookType(boolean active, com.skava.core.response.marketplace.WebhookType webhookType)
-