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 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)
      • findActiveByType

        @Query(name="Pipeline.findActiveByType")
        List<Pipeline> findActiveByType​(@Param("type")
                                        PipelineType type)
      • findByName

        @Query(name="Pipeline.findByName")
        List<Pipeline> findByName​(@Param("name")
                                  String name)