Interface ChangeSummaryGroupRepository<D>
- Type Parameters:
D
- The business domain type
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<D,
,String> CustomizedChangeSummaryGroupRepository<D>
,com.broadleafcommerce.common.extension.DomainTypeAware
,com.broadleafcommerce.common.extension.data.PagingAndSortingRepository<D,
,String> org.springframework.data.repository.Repository<D,
String>
- All Known Subinterfaces:
JpaChangeSummaryGroupRepository<D>
@NoRepositoryBean
public interface ChangeSummaryGroupRepository<D>
extends com.broadleafcommerce.common.extension.data.PagingAndSortingRepository<D,String>, CustomizedChangeSummaryGroupRepository<D>
Repository for working with repository domain related to the
ChangeSummaryGroup
business
domain.- Author:
- Jeff Fischer
-
Method Summary
Modifier and TypeMethodDescriptionreadByIdAndArchivedNot
(String id, Boolean archived) Deprecated.Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll
Methods inherited from interface com.broadleafcommerce.sandbox.repository.nontrackable.CustomizedChangeSummaryGroupRepository
archiveChangeSummaryGroupsForSandbox, batchTransition, batchTransition, cleanupBatch, findChangeSummaryGroupByIdsCount, findChangeSummaryGroupsByIds, findChangeSummaryGroupsByIds, findChangeSummaryGroupsByIds, findChangeSummaryGroupsBySandbox, findChangeSummaryGroupsBySandbox, readByIdAndArchivedNot, readPageByStateAndSandboxAndArchivedNot, readPageByStateAndSandboxAndArchivedNot, readPageByStateAndSandboxAndAuthorAndArchivedNot, readPageByStateAndSandboxAndAuthorAndArchivedNot, removeFromAffectedVendors, updateVals, updateVals
Methods inherited from interface com.broadleafcommerce.common.extension.DomainTypeAware
getDomainType
Methods inherited from interface com.broadleafcommerce.common.extension.data.PagingAndSortingRepository
findAll, findAll
-
Method Details
-
readByIdAndArchivedNot
@Deprecated @Policy(operationTypes=READ) default Optional<D> readByIdAndArchivedNot(String id, @Nullable Boolean archived) Deprecated.TakesChangeSummaryGroup.getArchived()
into account when retrieving a group with the given ID.- Parameters:
id
- ID of the group to retrievearchived
-ChangeSummaryGroup.getArchived()
value to not match- Returns:
- A
ChangeSummaryGroup
matching the given ID and not matching the given archived status
-
CustomizedChangeSummaryGroupRepository.readByIdAndArchivedNot(String, boolean, boolean, ContextInfo)