Interface ApplicationRepository

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

    public interface ApplicationRepository
    extends org.springframework.data.jpa.repository.JpaRepository<Application,​Long>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Optional<Application> findById​(Long aLong)  
      Application findByName​(String name)  
      • Methods inherited from interface org.springframework.data.repository.CrudRepository

        count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, 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

      • findById

        @PreAuthorize("permitAll()")
        @NonNull
        Optional<Application> findById​(@NonNull
                                       Long aLong)
        Specified by:
        findById in interface org.springframework.data.repository.CrudRepository<Application,​Long>