Interface ImageConversionRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<ImageConversion,
,Long> org.springframework.data.jpa.repository.JpaRepository<ImageConversion,
,Long> org.springframework.data.jpa.repository.JpaSpecificationExecutor<ImageConversion>
,org.springframework.data.repository.PagingAndSortingRepository<ImageConversion,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<ImageConversion>
,org.springframework.data.repository.Repository<ImageConversion,
Long>
public interface ImageConversionRepository
extends org.springframework.data.jpa.repository.JpaRepository<ImageConversion,Long>, org.springframework.data.jpa.repository.JpaSpecificationExecutor<ImageConversion>, org.springframework.data.repository.PagingAndSortingRepository<ImageConversion,Long>
Image Conversion's repository
- Author:
- Fernando Romulo da Silva
-
Method Summary
Modifier and TypeMethodDescriptionfindByFileName
(String fileName) Find a image conversion by file name.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, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush
Methods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor
count, exists, 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
-
findByFileName
Find a image conversion by file name.- Parameters:
fileName
- The conversion file name- Returns:
- A
Optional
withImageConversion
or a emptyOptional
-