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

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


        QueryResponse response = new QueryResponse(customerSolrServer.request(request), customerSolrServer);
        logger.debug("QueryResponse Obj: " + response);
        List<CustomerSolr> customerSolrList = response.getBeans(CustomerSolr.class);
        logger.debug(" customerSolrList: " + customerSolrList);
        CustomerResponseBean customerResponseBean = new CustomerResponseBean();
        customerResponseBean.setCustomerSolrList(customerSolrList);
        logger.debug("customerSolrList add sucessflly in customerResponseBeen ");
        if (StringUtils.isNotEmpty(facetField)) {
            List<FacetField> customerSolrFacetFieldList = response.getFacetFields();
            logger.debug("CustomerFacetFileList: " + customerSolrFacetFieldList);
            customerResponseBean.setCustomerSolrFacetFieldList(customerSolrFacetFieldList);
            logger.debug(" CustomerFacetFileList Add sucessflly in customerResponseBeen  ");
        }
        return customerResponseBean;
    }
View Full Code Here


        SolrRequest request = new QueryRequest(solrQuery, METHOD.POST);
        // request.setPath(getRequestPath());
        QueryResponse response = new QueryResponse(customerSolrServer.request(request), customerSolrServer);
        List<CustomerSolr> customerSolrList = response.getBeans(CustomerSolr.class);
        List<FacetField> customerSolrFacetFieldList = response.getFacetFields();
        CustomerResponseBean customerResponseBean = new CustomerResponseBean();
        customerResponseBean.setCustomerSolrList(customerSolrList);
        customerResponseBean.setCustomerSolrFacetFieldList(customerSolrFacetFieldList);
        return customerResponseBean;
    }
View Full Code Here

TOP

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

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.