Interface JpaCatalogRepository<D extends JpaTenantCatalog>

Type Parameters:
D - The database specific type for the domain class (e.g. a JPA specific domain type)
All Superinterfaces:
CatalogRepository<D>, CustomizedCatalogRepository<D>, com.broadleafcommerce.common.extension.DomainTypeAware, com.broadleafcommerce.common.messaging.notification.NotificationStateRepository, org.springframework.data.repository.Repository<D,String>, com.broadleafcommerce.data.tracking.core.TrackableRepository<D>, com.broadleafcommerce.data.tracking.core.TrackableRsqlFilterExecutor<D>

@Repository @Narrow(com.broadleafcommerce.data.tracking.jpa.filtering.narrow.JpaNarrowExecutor.class) public interface JpaCatalogRepository<D extends JpaTenantCatalog> extends CatalogRepository<D>
Domain specific (JpaTenantCatalog) repository declaration. Such a declaration is generally tied to a respository specific domain, such as domain relevant only to JPA, or another database platform for which Spring Data provides support. This interface declaration is generally left empty and instead inherits all of its query methods from a superclass interface. The superclass interface is purposefully type agnostic and can usually be multi-purposed for multiple repository specific declarations such as this one.

If there are repository specific query methods that do not make sense in other platforms, they can be declared here.

Author:
Jeff Fischer