Interface FridgeProductAssoRepo
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<FridgeProductAsso,
,Long> org.springframework.data.jpa.repository.JpaRepository<FridgeProductAsso,
,Long> org.springframework.data.repository.ListCrudRepository<FridgeProductAsso,
,Long> org.springframework.data.repository.ListPagingAndSortingRepository<FridgeProductAsso,
,Long> org.springframework.data.repository.PagingAndSortingRepository<FridgeProductAsso,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<FridgeProductAsso>
,org.springframework.data.repository.Repository<FridgeProductAsso,
Long>
public interface FridgeProductAssoRepo
extends org.springframework.data.jpa.repository.JpaRepository<FridgeProductAsso,Long>
Repository for fridge product associations
- Version:
- 1.1
- Author:
- Birk, Pedro
-
Method Summary
Modifier and TypeMethodDescriptionfindAllById
(long id) Finds all fridge product associations by idMethods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush
Methods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAll
Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findAllById
Finds all fridge product associations by id- Parameters:
id
- the id of the fridge product association- Returns:
- an optional holding the fridge product association with the given id if it exists
-