Interface FileRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<File,Long>
,org.springframework.data.jpa.repository.JpaRepository<File,Long>
,org.springframework.data.repository.PagingAndSortingRepository<File,Long>
,org.springframework.data.repository.query.QueryByExampleExecutor<File>
,org.springframework.data.repository.Repository<File,Long>
public interface FileRepository extends org.springframework.data.jpa.repository.JpaRepository<File,Long>
Spring Data JPA repository for the File entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<File>
findByOwnerIsCurrentUser(String login, FileType type)
List<File>
findByOwnerIsCurrentUserOrShared(String login, FileType type)
-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findById, save
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlush
-
-