Class DefaultDataDrivenEnumService<D extends DataDrivenEnum>
java.lang.Object
com.broadleafcommerce.data.tracking.core.service.BaseCrudEntityService<P>
com.broadleafcommerce.data.tracking.core.service.BaseRsqlCrudEntityService<D>
com.broadleafcommerce.catalog.service.enumeration.DefaultDataDrivenEnumService<D>
- All Implemented Interfaces:
DataDrivenEnumService<D>,com.broadleafcommerce.data.tracking.core.service.CrudEntityService<D>,com.broadleafcommerce.data.tracking.core.service.RsqlCrudEntityService<D>
public class DefaultDataDrivenEnumService<D extends DataDrivenEnum>
extends com.broadleafcommerce.data.tracking.core.service.BaseRsqlCrudEntityService<D>
implements DataDrivenEnumService<D>
- Author:
- Sunny Yu
-
Constructor Summary
ConstructorsConstructorDescriptionDefaultDataDrivenEnumService(DataDrivenEnumRepository<com.broadleafcommerce.data.tracking.core.Trackable> repository, com.broadleafcommerce.data.tracking.core.service.RsqlCrudEntityHelper helper, com.broadleafcommerce.data.tracking.core.filtering.fetch.FilterParser<cz.jirutka.rsql.parser.ast.Node> parser) -
Method Summary
Modifier and TypeMethodDescriptionprotected DataDrivenEnumRepository<com.broadleafcommerce.data.tracking.core.Trackable>readAllByContextIds(Collection<String> dataDrivenEnumIds, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Return all of the data driven enums with IDs in the supplied collection.org.springframework.data.domain.Page<D>readAllByType(String type, cz.jirutka.rsql.parser.ast.Node filters, org.springframework.data.domain.Pageable page, com.broadleafcommerce.data.tracking.core.context.ContextInfo context) Returns all of thedata driven enumswith the given type and filters.org.springframework.data.domain.Page<D>readAllByValue(String value, cz.jirutka.rsql.parser.ast.Node filters, org.springframework.data.domain.Pageable page, com.broadleafcommerce.data.tracking.core.context.ContextInfo context) Returns all of thedata driven enumswith the given value and filters.readByTypeAndValue(String type, String value, com.broadleafcommerce.data.tracking.core.context.ContextInfo context) Returns theDataDrivenEnumthat has the given type and value.Methods inherited from class com.broadleafcommerce.data.tracking.core.service.BaseRsqlCrudEntityService
getRsqlHelper, readAll, readAll, readAll, readAllMethods inherited from class com.broadleafcommerce.data.tracking.core.service.BaseCrudEntityService
convertFromPersistentDomain, convertToPersistentDomain, create, createAll, createAllAllowingPartialSuccess, delete, getHelper, getSortPositionStrategy, readAll, readAll, readAll, readAllByContextId, readByContextId, replace, replaceAll, replaceAllAllowingPartialSuccess, setSortPositionStrategy, update, updateAll, updateAllAllowingPartialSuccess, updateSortMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.broadleafcommerce.data.tracking.core.service.CrudEntityService
create, createAll, createAllAllowingPartialSuccess, delete, readAll, readAll, readAll, readAllByContextId, readByContextId, replace, replaceAll, replaceAllAllowingPartialSuccess, update, updateAll, updateAllAllowingPartialSuccess, updateSortMethods inherited from interface com.broadleafcommerce.data.tracking.core.service.RsqlCrudEntityService
readAll, readAll, readAll, readAll
-
Constructor Details
-
DefaultDataDrivenEnumService
public DefaultDataDrivenEnumService(DataDrivenEnumRepository<com.broadleafcommerce.data.tracking.core.Trackable> repository, com.broadleafcommerce.data.tracking.core.service.RsqlCrudEntityHelper helper, com.broadleafcommerce.data.tracking.core.filtering.fetch.FilterParser<cz.jirutka.rsql.parser.ast.Node> parser)
-
-
Method Details
-
readAllByType
public org.springframework.data.domain.Page<D> readAllByType(@Nullable String type, @Nullable cz.jirutka.rsql.parser.ast.Node filters, @Nullable org.springframework.data.domain.Pageable page, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo context) Description copied from interface:DataDrivenEnumServiceReturns all of thedata driven enumswith the given type and filters.- Specified by:
readAllByTypein interfaceDataDrivenEnumService<D extends DataDrivenEnum>- Parameters:
type- the data driven enum type to filter byfilters- additional filters to apply in the query. Should beEmptyNodeif no additional filters should be applied.page- the requested page of results from the databasecontext- the context to query within- Returns:
- all of the data driven enums matching the given type and filters
-
readAllByValue
public org.springframework.data.domain.Page<D> readAllByValue(@Nullable String value, @Nullable cz.jirutka.rsql.parser.ast.Node filters, @Nullable org.springframework.data.domain.Pageable page, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo context) Description copied from interface:DataDrivenEnumServiceReturns all of thedata driven enumswith the given value and filters.- Specified by:
readAllByValuein interfaceDataDrivenEnumService<D extends DataDrivenEnum>- Parameters:
value- the data driven enum value to filter byfilters- additional filters to apply in the query. Should beEmptyNodeif no additional filters should be applied.page- the requested page of results from the databasecontext- the context to query within- Returns:
- all of the data driven enums matching the given value and filters
-
readByTypeAndValue
public Optional<D> readByTypeAndValue(String type, String value, com.broadleafcommerce.data.tracking.core.context.ContextInfo context) Description copied from interface:DataDrivenEnumServiceReturns theDataDrivenEnumthat has the given type and value.- Specified by:
readByTypeAndValuein interfaceDataDrivenEnumService<D extends DataDrivenEnum>- Parameters:
type- the data driven enum type to filter byvalue- the data driven enum value to filter bycontext- context information surrounding sandboxing and multitenant state- Returns:
- the data driven enum that has the given type and value
-
readAllByContextIds
public Stream<D> readAllByContextIds(@NonNull Collection<String> dataDrivenEnumIds, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Description copied from interface:DataDrivenEnumServiceReturn all of the data driven enums with IDs in the supplied collection.- Specified by:
readAllByContextIdsin interfaceDataDrivenEnumService<D extends DataDrivenEnum>- Parameters:
dataDrivenEnumIds- the data driven enum context IDs to search forcontextInfo- context information surrounding sandboxing and multitenant state- Returns:
- the data driven enums that matched with the IDs in the given collection
-
getRepositoryDomain
- Specified by:
getRepositoryDomainin interfaceDataDrivenEnumService<D extends DataDrivenEnum>
-
getRepository
protected DataDrivenEnumRepository<com.broadleafcommerce.data.tracking.core.Trackable> getRepository()- Overrides:
getRepositoryin classcom.broadleafcommerce.data.tracking.core.service.BaseCrudEntityService<D extends DataDrivenEnum>
-