Interface TurIntegrationInstanceRepository

All Superinterfaces:
CrudRepository<TurIntegrationInstance,String>, JpaRepository<TurIntegrationInstance,String>, ListCrudRepository<TurIntegrationInstance,String>, ListPagingAndSortingRepository<TurIntegrationInstance,String>, PagingAndSortingRepository<TurIntegrationInstance,String>, QueryByExampleExecutor<TurIntegrationInstance>, Repository<TurIntegrationInstance,String>

public interface TurIntegrationInstanceRepository extends JpaRepository<TurIntegrationInstance,String>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     

    Methods inherited from interface CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush

    Methods inherited from interface ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface ListPagingAndSortingRepository

    findAll

    Methods inherited from interface PagingAndSortingRepository

    findAll

    Methods inherited from interface QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • delete

      @Modifying @Query("delete from TurIntegrationInstance iv where iv.id = ?1") void delete(String id)