Interface RequestRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<Request,,UUID> org.springframework.data.jpa.repository.JpaRepository<Request,,UUID> org.springframework.data.jpa.repository.JpaSpecificationExecutor<Request>,org.springframework.data.repository.PagingAndSortingRepository<Request,,UUID> org.springframework.data.repository.query.QueryByExampleExecutor<Request>,org.springframework.data.repository.Repository<Request,UUID>
-
Method Summary
Modifier and TypeMethodDescriptionvoiddeleteByIdIn(Set<UUID> requestIds) findAllByFolderId(UUID folderId) findAllByFolderIdIn(Set<UUID> folderIds) findAllByFolderIdOrderByOrder(UUID folderId) findAllByIdIn(Set<UUID> requestIds) findAllByName(String name) findAllByProjectId(UUID projectId) findAllByProjectIdAndFolderId(UUID projectId, UUID folderId) findAllByProjectIdAndIdIn(UUID projectId, Set<UUID> requestIds) findAllByProjectIdAndIdInOrderByOrder(UUID projectId, Set<UUID> requestIds) findAllByProjectIdAndNameContains(UUID projectId, String name) findByProjectIdAndId(UUID projectId, UUID id) findMaxOrder(UUID projectId) findMaxOrder(UUID projectId, UUID folderId) getByProjectIdAndSourceId(UUID projectId, UUID sourceId) voidupdateAutoCookieDisabledByFolderIdIn(boolean autoCookieDisabled, Set<UUID> ids) Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor
count, exists, findAll, findAll, findAll, findOneMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findAllByProjectId
-
findByProjectIdAndId
-
getRequestRuntimeOptionsById
@Query("select new org.qubership.atp.itf.lite.backend.model.RequestRuntimeOptions(r.disableSslCertificateVerification, r.disableSslClientCertificate, r.disableFollowingRedirect, r.disableAutoEncoding) from Request r where r.id = :id") Optional<RequestRuntimeOptions> getRequestRuntimeOptionsById(UUID id) -
findAllByProjectIdAndFolderId
-
findAllByFolderIdIn
-
findAllByProjectIdAndNameContains
-
findAllByFolderId
-
findAllByFolderIdOrderByOrder
-
findAllByIdIn
-
deleteByIdIn
-
findAllByProjectIdAndIdIn
-
findAllByProjectIdAndIdInOrderByOrder
-
findTransportType
@Query("select r.transportType from Request r where r.id = :id") TransportType findTransportType(UUID id) -
findMaxOrder
-
findMaxOrder
-
getByProjectIdAndSourceId
-
findAllByName
-
updateAutoCookieDisabledByFolderIdIn
-