Interface BaseRepository<D,P,ID>

All Superinterfaces:
org.springframework.data.repository.CrudRepository<P,ID>, com.broadleafcommerce.common.extension.data.PagingAndSortingRepository<P,ID>, org.springframework.data.repository.Repository<P,ID>
All Known Subinterfaces:
BaseJpaRepository<D,P,ID>
All Known Implementing Classes:
BaseJpaRepositoryImpl

@Deprecated(since="1.0.0") @NoRepositoryBean public interface BaseRepository<D,P,ID> extends com.broadleafcommerce.common.extension.data.PagingAndSortingRepository<P,ID>
Deprecated.
Use com.broadleafcommerce.data.tracking.core.TrackableRepository instead
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    newFromDomain(D domain)
    Deprecated.

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAllById, findById, save, saveAll

    Methods inherited from interface com.broadleafcommerce.common.extension.data.PagingAndSortingRepository

    findAll, findAll
  • Method Details

    • findAll

      @Deprecated(since="1.0.0") List<P> findAll()
      Deprecated.
      Specified by:
      findAll in interface org.springframework.data.repository.CrudRepository<D,P>
    • newFromDomain

      @Deprecated(since="1.0.0") P newFromDomain(D domain)
      Deprecated.