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 Type
    Method
    Description
    Finds the JpaImportLob whose JpaImportLob.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

      Optional<D> findByPath(String path)
      Finds the JpaImportLob whose JpaImportLob.getPath() matches the given value.
      Parameters:
      path - the path to use to find a JpaImportLob.
      Returns:
      an optional containing the JpaImportLob which has the given path, or Optional.empty() if not found