Interface PipelineRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<Pipeline,Long>,org.springframework.data.jpa.repository.JpaRepository<Pipeline,Long>,org.springframework.data.repository.PagingAndSortingRepository<Pipeline,Long>,org.springframework.data.repository.query.QueryByExampleExecutor<Pipeline>,org.springframework.data.repository.Repository<Pipeline,Long>
@Repository public interface PipelineRepository extends org.springframework.data.jpa.repository.JpaRepository<Pipeline,Long>
Spring Data repository for the Pipeline entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Pipeline>findActiveByType(PipelineType type)List<Pipeline>findActiveByTypeUrl(PipelineType type, String urlPart)List<Pipeline>findByType(PipelineType type)List<Pipeline>findByTypeUrl(PipelineType type, String urlPart)-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findById, save
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlush
-
-
-
-
Method Detail
-
findByTypeUrl
@Query(name="Pipeline.findByTypeUrl") List<Pipeline> findByTypeUrl(@Param("type") PipelineType type, @Param("urlPart") String urlPart)
-
findActiveByTypeUrl
@Query(name="Pipeline.findActiveByTypeUrl") List<Pipeline> findActiveByTypeUrl(@Param("type") PipelineType type, @Param("urlPart") String urlPart)
-
findByType
@Query(name="Pipeline.findByType") List<Pipeline> findByType(@Param("type") PipelineType type)
-
findActiveByType
@Query(name="Pipeline.findActiveByType") List<Pipeline> findActiveByType(@Param("type") PipelineType type)
-
-