Uses of Interface
com.elasticpath.service.index.QueryComposer

Packages that use QueryComposer
com.elasticpath.persistence   
com.elasticpath.persistence.impl   
com.elasticpath.service.index.impl   
 

Uses of QueryComposer in com.elasticpath.persistence
 

Methods in com.elasticpath.persistence with parameters of type QueryComposer
 java.util.List IndexSearcher.search(java.lang.String indexDir, QueryComposer queryComposer, SearchCriteria searchCriteria)
          Searches the index with the given query.
 

Uses of QueryComposer in com.elasticpath.persistence.impl
 

Methods in com.elasticpath.persistence.impl with parameters of type QueryComposer
 java.util.List IndexSearcherImpl.search(java.lang.String indexDir, QueryComposer queryComposer, SearchCriteria searchCriteria)
          Searches the index with the given query.
 

Uses of QueryComposer in com.elasticpath.service.index.impl
 

Classes in com.elasticpath.service.index.impl that implement QueryComposer
 class AbstractQueryComposerImpl
          This is an abastract implementation of QueryComposer.
 class CategoryQueryComposerImpl
          A query compose for category search.
 class CustomerQueryComposerImpl
          A query compose for customer search.
 class OrderQueryComposerImpl
          A query compose for orders search.
 class ProductQueryComposerImpl
          A query compose for products search.
 

Methods in com.elasticpath.service.index.impl that return QueryComposer
 QueryComposer IndexSearchServiceImpl.getCategoryQueryComposer()
          Returns the category query composer.
 QueryComposer IndexSearchServiceImpl.getCustomerQueryComposer()
          Returns the customer query composer.
 QueryComposer IndexSearchServiceImpl.getOrderQueryComposer()
          Returns the order query composer.
 QueryComposer IndexSearchServiceImpl.getProductQueryComposer()
          Returns the product query composer.
 

Methods in com.elasticpath.service.index.impl with parameters of type QueryComposer
 void IndexSearchServiceImpl.setCategoryQueryComposer(QueryComposer categoryQueryComposer)
          Sets the category query composer.
 void IndexSearchServiceImpl.setCustomerQueryComposer(QueryComposer customerQueryComposer)
          Sets the customer query composer.
 void IndexSearchServiceImpl.setOrderQueryComposer(QueryComposer orderQueryComposer)
          Sets the order query composer.
 void IndexSearchServiceImpl.setProductQueryComposer(QueryComposer productQueryComposer)
          Sets the product query composer.