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
ConstructorDescriptionDefaultDataDrivenEnumService
(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 enums
with 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 enums
with the given value and filters.readByTypeAndValue
(String type, String value, com.broadleafcommerce.data.tracking.core.context.ContextInfo context) Returns theDataDrivenEnum
that has the given type and value.Methods inherited from class com.broadleafcommerce.data.tracking.core.service.BaseRsqlCrudEntityService
getRsqlHelper, readAll, readAll, readAll, readAll
Methods 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, updateSort
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods 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, updateSort
Methods 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:DataDrivenEnumService
Returns all of thedata driven enums
with the given type and filters.- Specified by:
readAllByType
in interfaceDataDrivenEnumService<D extends DataDrivenEnum>
- Parameters:
type
- the data driven enum type to filter byfilters
- additional filters to apply in the query. Should beEmptyNode
if 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:DataDrivenEnumService
Returns all of thedata driven enums
with the given value and filters.- Specified by:
readAllByValue
in interfaceDataDrivenEnumService<D extends DataDrivenEnum>
- Parameters:
value
- the data driven enum value to filter byfilters
- additional filters to apply in the query. Should beEmptyNode
if 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:DataDrivenEnumService
Returns theDataDrivenEnum
that has the given type and value.- Specified by:
readByTypeAndValue
in 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:DataDrivenEnumService
Return all of the data driven enums with IDs in the supplied collection.- Specified by:
readAllByContextIds
in 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:
getRepositoryDomain
in interfaceDataDrivenEnumService<D extends DataDrivenEnum>
-
getRepository
protected DataDrivenEnumRepository<com.broadleafcommerce.data.tracking.core.Trackable> getRepository()- Overrides:
getRepository
in classcom.broadleafcommerce.data.tracking.core.service.BaseCrudEntityService<D extends DataDrivenEnum>
-