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 Typ
    Methode
    Beschreibung
    findByMissionCodeAndIdentifier(String missionCode, String identifier)
    Get the processing order history with the given mission code and identifier

    Von 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 order
      identifier - the identifier of the processing order
      Gibt zurück:
      the unique processing order history identified by the given identifier