Package de.dlr.proseo.model.dao
Schnittstelle MissionRepository
- Alle Superschnittstellen:
org.springframework.data.repository.CrudRepository<Mission,
,Long> org.springframework.data.jpa.repository.JpaRepository<Mission,
,Long> org.springframework.data.repository.PagingAndSortingRepository<Mission,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<Mission>
,org.springframework.data.repository.Repository<Mission,
Long>
public interface MissionRepository
extends org.springframework.data.jpa.repository.JpaRepository<Mission,Long>
Data Access Object for the Mission class
- Autor:
- Dr. Thomas Bassler
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungfindByCode
(String missionCode) Get the mission with the given codeVon 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
-
findByCode
Get the mission with the given code- Parameter:
missionCode
- the mission code- Gibt zurück:
- the unique mission identified by the code
-