Package it.univr.passportease.repository
Interface RequestOfficeRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<RequestOffice,
,UUID> org.springframework.data.jpa.repository.JpaRepository<RequestOffice,
,UUID> org.springframework.data.repository.ListCrudRepository<RequestOffice,
,UUID> org.springframework.data.repository.ListPagingAndSortingRepository<RequestOffice,
,UUID> org.springframework.data.repository.PagingAndSortingRepository<RequestOffice,
,UUID> org.springframework.data.repository.query.QueryByExampleExecutor<RequestOffice>
,org.springframework.data.repository.Repository<RequestOffice,
UUID>
@Repository
public interface RequestOfficeRepository
extends org.springframework.data.jpa.repository.JpaRepository<RequestOffice,UUID>
Repository for the
RequestOffice
entity.-
Method Summary
Modifier and TypeMethodDescriptionfindByRequestId
(UUID requestId) Finds all theRequestOffice
associated to the given request id.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, 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
-
findByRequestId
Finds all theRequestOffice
associated to the given request id.- Parameters:
requestId
- The id of the request- Returns:
- The list of
RequestOffice
associated to the request
-