Interface TurSNRankingExpressionRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<TurSNRankingExpression, String>, org.springframework.data.jpa.repository.JpaRepository<TurSNRankingExpression, String>, org.springframework.data.repository.ListCrudRepository<TurSNRankingExpression, String>, org.springframework.data.repository.ListPagingAndSortingRepository<TurSNRankingExpression, String>, org.springframework.data.repository.PagingAndSortingRepository<TurSNRankingExpression, String>, org.springframework.data.repository.query.QueryByExampleExecutor<TurSNRankingExpression>, org.springframework.data.repository.Repository<TurSNRankingExpression, String>

public interface TurSNRankingExpressionRepository extends org.springframework.data.jpa.repository.JpaRepository<TurSNRankingExpression, String>
Since:
0.3.7
Author:
Alexandre Oliveira
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    delete(@NotNull TurSNRankingExpression turSNRankingExpression)
     
    findByTurSNSite(org.springframework.data.domain.Sort language, TurSNSite turSNSite)
     
    save(S entity)
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

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

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    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
  • Field Details

  • Method Details

    • findByTurSNSite

      @Cacheable("turSNRankingExpressionFindByTurSNSite") Set<TurSNRankingExpression> findByTurSNSite(org.springframework.data.domain.Sort language, TurSNSite turSNSite)
    • save

      @CacheEvict(value="turSNRankingExpressionFindByTurSNSite", allEntries=true) @NotNull <S extends TurSNRankingExpression> S save(@NotNull S entity)
      Specified by:
      save in interface org.springframework.data.repository.CrudRepository<TurSNRankingExpression, String>
    • delete

      @CacheEvict(value="turSNRankingExpressionFindByTurSNSite", allEntries=true) void delete(@NotNull @NotNull TurSNRankingExpression turSNRankingExpression)
      Specified by:
      delete in interface org.springframework.data.repository.CrudRepository<TurSNRankingExpression, String>