Package de.dlr.proseo.model.dao
Schnittstelle ProcessingOrderHistoryRepository
- Alle Superschnittstellen:
org.springframework.data.repository.CrudRepository<ProcessingOrderHistory,
,Long> org.springframework.data.jpa.repository.JpaRepository<ProcessingOrderHistory,
,Long> org.springframework.data.repository.PagingAndSortingRepository<ProcessingOrderHistory,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<ProcessingOrderHistory>
,org.springframework.data.repository.Repository<ProcessingOrderHistory,
Long>
@Transactional
@Repository
public interface ProcessingOrderHistoryRepository
extends org.springframework.data.jpa.repository.JpaRepository<ProcessingOrderHistory,Long>
Data Access Object for the ProcessingOrderHistory class
- Autor:
- Ernst Melchinger
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungfindByMissionCodeAndIdentifier
(String missionCode, String identifier) Get the processing order history with the given mission code and identifierVon Schnittstelle geerbte Methoden org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
Von Schnittstelle geerbte Methoden org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush
Von Schnittstelle geerbte Methoden org.springframework.data.repository.PagingAndSortingRepository
findAll
Von Schnittstelle geerbte Methoden org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Methodendetails
-
findByMissionCodeAndIdentifier
@Query("select po from ProcessingOrderHistory po where po.missionCode = ?1 and po.identifier = ?2") ProcessingOrderHistory findByMissionCodeAndIdentifier(String missionCode, String identifier) Get the processing order history with the given mission code and identifier- Parameter:
missionCode
- the mission code of the processing orderidentifier
- the identifier of the processing order- Gibt zurück:
- the unique processing order history identified by the given identifier
-