Package org.hoteia.qalingo.core.solr.response

Examples of org.hoteia.qalingo.core.solr.response.ProductMarketingResponseBean


        List<ProductMarketingSolr> ProductMarketingSolrList = response.getBeans(ProductMarketingSolr.class);

        logger.debug("ProductMarketingSolrList: " + ProductMarketingSolrList);

        ProductMarketingResponseBean productMarketingResponseBean = new ProductMarketingResponseBean();
        productMarketingResponseBean.setProductMarketingSolrList(ProductMarketingSolrList);

        logger.debug("ProductMarketingSolrList add sucessflly in productResponseBeen ");

        if (StringUtils.isNotEmpty(facetField)) {
            List<FacetField> productSolrFacetFieldList = response.getFacetFields();

            logger.debug("ProductFacetFileList: " + productSolrFacetFieldList);

            productMarketingResponseBean.setProductMarketingSolrFacetFieldList(productSolrFacetFieldList);

            logger.debug("ProductFacetFileList was successfully added in productResponseBeen  ");
        }
        return productMarketingResponseBean;
    }
View Full Code Here


       
        List<FacetField> productSolrFacetFieldList = response.getFacetFields();
       
        logger.debug("ProductFacetFileList: " + productSolrFacetFieldList);
       
        ProductMarketingResponseBean productMarketingResponseBean = new ProductMarketingResponseBean();
        productMarketingResponseBean.setProductMarketingSolrList(productMarketingSolrList);
        productMarketingResponseBean.setProductMarketingSolrFacetFieldList(productSolrFacetFieldList);
       
        logger.debug("ProductMarketingSolrList And ProductFacetFileList was successfully added in productResponseBeen");
       
        return productMarketingResponseBean;
    }
View Full Code Here

        String order = searchForm.getOrder();
   
    try {
            PagedListHolder<SearchProductItemViewBean> productsViewBeanPagedListHolder;
        if(searchForm.getPage() == 0){
              ProductMarketingResponseBean productMarketingResponseBean = null;
              if(searchForm.getPrice() != null){
                  productMarketingResponseBean = productMarketingSolrService.searchProductMarketing(ProductMarketingResponseBean.PRODUCT_MARKETING_DEFAULT_SEARCH_FIELD,
                          searchForm.getText(), ProductMarketingResponseBean.PRODUCT_MARKETING_DEFAULT_FACET_FIELD, searchForm.getPrice().getStartValue(), searchForm.getPrice().getEndValue(),
                          searchForm.getCatalogCategoryList());
                  productMarketingResponseBean = productMarketingSolrService.searchProductMarketing(ProductMarketingResponseBean.PRODUCT_MARKETING_DEFAULT_SEARCH_FIELD,
View Full Code Here

TOP

Related Classes of org.hoteia.qalingo.core.solr.response.ProductMarketingResponseBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.