Class DynamicQueryServiceImpl
- java.lang.Object
-
- de.hybris.platform.cockpit.services.impl.AbstractServiceImpl
-
- de.hybris.platform.productcockpit.services.catalog.impl.DynamicQueryServiceImpl
-
- All Implemented Interfaces:
DynamicQueryService
public class DynamicQueryServiceImpl extends AbstractServiceImpl implements DynamicQueryService
Contains implementation of base methods for Dynamic Query
-
-
Field Summary
-
Fields inherited from class de.hybris.platform.cockpit.services.impl.AbstractServiceImpl
modelService, typeService
-
-
Constructor Summary
Constructors Constructor Description DynamicQueryServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<DynamicQuery>
getAllDynamicQuery()
java.util.List<TypedObject>
getDynamicQueryResults(DynamicQuery query)
Methods executes particular query and returns appropiate results if there are any.void
setProductCockpitCatalogService(CatalogService productCockpitCatalogService)
-
Methods inherited from class de.hybris.platform.cockpit.services.impl.AbstractServiceImpl
getEnum, getEnums, getLocalizedLabel, getLocalizedLabel, getModelService, getTypeService, setCockpitTypeService, setLabelResolver, setModelService
-
-
-
-
Method Detail
-
setProductCockpitCatalogService
public void setProductCockpitCatalogService(CatalogService productCockpitCatalogService)
-
getDynamicQueryResults
public java.util.List<TypedObject> getDynamicQueryResults(DynamicQuery query)
Description copied from interface:DynamicQueryService
Methods executes particular query and returns appropiate results if there are any.- Specified by:
getDynamicQueryResults
in interfaceDynamicQueryService
- Parameters:
query
- - dynamic query that will be executed- Returns:
- appropiate results if there are any
-
getAllDynamicQuery
public java.util.List<DynamicQuery> getAllDynamicQuery()
- Specified by:
getAllDynamicQuery
in interfaceDynamicQueryService
- Returns:
- all available (defined) dynamic queries
-
-