Interface ReferenceMwParametersRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<ReferenceMwParameters,
,Long> DetachableJpaRepository<ReferenceMwParameters,
,Long> org.springframework.data.jpa.repository.JpaRepository<ReferenceMwParameters,
,Long> org.springframework.data.repository.ListCrudRepository<ReferenceMwParameters,
,Long> org.springframework.data.repository.ListPagingAndSortingRepository<ReferenceMwParameters,
,Long> org.springframework.data.repository.PagingAndSortingRepository<ReferenceMwParameters,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<ReferenceMwParameters>
,org.springframework.data.repository.Repository<ReferenceMwParameters,
Long>
@Transactional
public interface ReferenceMwParametersRepository
extends DetachableJpaRepository<ReferenceMwParameters,Long>
-
Method Summary
Modifier and TypeMethodDescriptionfindAllByEventIds
(Collection<String> eventIds) findOneByEventId
(String eventId) Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
Methods inherited from interface gov.llnl.gnem.apps.coda.common.repository.DetachableJpaRepository
findOneDetached
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
-
findAllByEventIds
@Query("select r from ReferenceMwParameters r where r.eventId in :eventIds") List<ReferenceMwParameters> findAllByEventIds(@Param("eventIds") Collection<String> eventIds) -
findOneByEventId
-