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>
@Repository
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, 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
-
findByCode
Get the mission with the given code- Parameter:
missionCode
- the mission code- Gibt zurück:
- the unique mission identified by the code
-