Interface ApplicationRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<Application,Long>, org.springframework.data.jpa.repository.JpaRepository<Application,Long>, org.springframework.data.repository.ListCrudRepository<Application,Long>, org.springframework.data.repository.ListPagingAndSortingRepository<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

    Modifier and Type
    Method
    Description
    findById(Long aLong)
     
     

    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, 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
  • Method Details

    • findByName

      @PreAuthorize("permitAll()") Application findByName(String name)
    • findById

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