Package sk.iway.iwcm.system.elfinder
Interface FolderPropertiesRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<FolderPropertiesEntity,
,Long> org.springframework.data.jpa.repository.JpaRepository<FolderPropertiesEntity,
,Long> org.springframework.data.jpa.repository.JpaSpecificationExecutor<FolderPropertiesEntity>
,org.springframework.data.repository.PagingAndSortingRepository<FolderPropertiesEntity,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<FolderPropertiesEntity>
,org.springframework.data.repository.Repository<FolderPropertiesEntity,
Long>
@Repository
public interface FolderPropertiesRepository
extends org.springframework.data.jpa.repository.JpaRepository<FolderPropertiesEntity,Long>, org.springframework.data.jpa.repository.JpaSpecificationExecutor<FolderPropertiesEntity>
-
Method Summary
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, saveAll, saveAllAndFlush, saveAndFlush
Methods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor
count, findAll, findAll, findAll, findOne
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
-
findByDirUrl
-
deleteByPathLike
@Transactional @Modifying @Query("DELETE FROM FolderPropertiesEntity fpe WHERE (lower(fpe.dirUrl) LIKE :dirUrl)") void deleteByPathLike(@Param("dirUrl") String path)
-