Interface JpaImportLobRepository<D extends com.broadleafcommerce.dataimport.provider.jpa.domain.JpaImportLob>
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<D,
,String> org.springframework.data.repository.Repository<D,
String>
@Repository
public interface JpaImportLobRepository<D extends com.broadleafcommerce.dataimport.provider.jpa.domain.JpaImportLob>
extends org.springframework.data.repository.CrudRepository<D,String>
JPA domain-specific repository for
JpaImportLob
.- Author:
- Samarth Dhruva (samarthd)
-
Method Summary
Modifier and TypeMethodDescriptionfindByPath
(String path) Finds theJpaImportLob
whoseJpaImportLob.getPath()
matches the given value.Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll
-
Method Details
-
findByPath
Finds theJpaImportLob
whoseJpaImportLob.getPath()
matches the given value.- Parameters:
path
- the path to use to find aJpaImportLob
.- Returns:
- an optional containing the
JpaImportLob
which has the given path, orOptional.empty()
if not found
-