Package com.epam.ta.reportportal.dao
Interface AttachmentRepository
-
- All Superinterfaces:
AttachmentRepositoryCustom,org.springframework.data.repository.CrudRepository<Attachment,java.lang.Long>,org.springframework.data.jpa.repository.JpaRepository<Attachment,java.lang.Long>,org.springframework.data.repository.PagingAndSortingRepository<Attachment,java.lang.Long>,org.springframework.data.repository.query.QueryByExampleExecutor<Attachment>,ReportPortalRepository<Attachment,java.lang.Long>,org.springframework.data.repository.Repository<Attachment,java.lang.Long>
public interface AttachmentRepository extends ReportPortalRepository<Attachment,java.lang.Long>, AttachmentRepositoryCustom
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<Attachment>findAllByLaunchIdIn(java.util.Collection<java.lang.Long> launchIds)java.util.Optional<Attachment>findByFileId(java.lang.String fileId)-
Methods inherited from interface com.epam.ta.reportportal.dao.AttachmentRepositoryCustom
deleteAllByIds, findByItemIdsModifiedBefore, findIdsByLaunchId, findIdsByProjectId, findIdsByTestItemId
-
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
-
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll
-
Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findOne
-
Methods inherited from interface com.epam.ta.reportportal.dao.ReportPortalRepository
exists, refresh
-
-
-
-
Method Detail
-
findByFileId
java.util.Optional<Attachment> findByFileId(java.lang.String fileId)
-
findAllByLaunchIdIn
java.util.List<Attachment> findAllByLaunchIdIn(java.util.Collection<java.lang.Long> launchIds)
-
-