Package de.dlr.proseo.model.dao
Schnittstelle ConfiguredProcessorRepository
- Alle Superschnittstellen:
org.springframework.data.repository.CrudRepository<ConfiguredProcessor,
,Long> org.springframework.data.jpa.repository.JpaRepository<ConfiguredProcessor,
,Long> org.springframework.data.repository.PagingAndSortingRepository<ConfiguredProcessor,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<ConfiguredProcessor>
,org.springframework.data.repository.Repository<ConfiguredProcessor,
Long>
@Repository
public interface ConfiguredProcessorRepository
extends org.springframework.data.jpa.repository.JpaRepository<ConfiguredProcessor,Long>
Data Access Object for the ConfiguredProcessor class
- Autor:
- Dr. Thomas Bassler
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungfindByMissionCodeAndIdentifier
(String missionCode, String identifier) Get the configured processor associated with the given mission code and identifierfindByUuid
(UUID uuid) Get the configured processor associated with the given UUIDVon Schnittstelle geerbte Methoden org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findById, save
Von Schnittstelle geerbte Methoden org.springframework.data.jpa.repository.JpaRepository
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlush
Von Schnittstelle geerbte Methoden org.springframework.data.repository.PagingAndSortingRepository
findAll
Von Schnittstelle geerbte Methoden org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findOne
-
Methodendetails
-
findByMissionCodeAndIdentifier
@Query("select cp from ConfiguredProcessor cp where cp.processor.processorClass.mission.code = ?1 and cp.identifier = ?2") ConfiguredProcessor findByMissionCodeAndIdentifier(String missionCode, String identifier) Get the configured processor associated with the given mission code and identifier- Parameter:
missionCode
- the mission code of the configured processoridentifier
- the identifier of the configured processor- Gibt zurück:
- the unique configured processor identified by the given identifier
-
findByUuid
Get the configured processor associated with the given UUID- Parameter:
uuid
- the UUID of the configured processor- Gibt zurück:
- the unique configured processor identified by the given UUID
-