Interface PipelineAttributeRepository

  • All Superinterfaces:
    org.springframework.data.repository.CrudRepository<PipelineAttribute,​Long>, org.springframework.data.jpa.repository.JpaRepository<PipelineAttribute,​Long>, org.springframework.data.repository.PagingAndSortingRepository<PipelineAttribute,​Long>, org.springframework.data.repository.query.QueryByExampleExecutor<PipelineAttribute>, org.springframework.data.repository.Repository<PipelineAttribute,​Long>

    @Repository
    public interface PipelineAttributeRepository
    extends org.springframework.data.jpa.repository.JpaRepository<PipelineAttribute,​Long>
    Spring Data repository for the PipelineAttribute entity.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      List<String> findDistinctByName​(String name)  
      List<Long> findDistinctPipelineByNameAndValue​(String name, String value)  
      • 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.jpa.repository.JpaRepository

        deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush
      • 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
    • Method Detail

      • findDistinctByName

        @Query(name="PipelineAttribute.findDistinctByName")
        List<String> findDistinctByName​(@Param("name")
                                        String name)
      • findDistinctPipelineByNameAndValue

        @Query(name="PipelineAttribute.findDistinctPipelineByNameAndValue")
        List<Long> findDistinctPipelineByNameAndValue​(@Param("name")
                                                      String name,
                                                      @Param("value")
                                                      String value)