source: vlo/branches/vlo-3.0/vlo-web-app/src/main/java/eu/clarin/cmdi/vlo/service/impl/SolrDocumentQueryFactoryImpl.java @ 4566

Last change on this file since 4566 was 4566, checked in by twagoo, 10 years ago

separated document query factory from facet query factory (both in interface and implementation)

File size: 1.7 KB
Line 
1/*
2 * Copyright (C) 2014 CLARIN
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18package eu.clarin.cmdi.vlo.service.impl;
19
20import eu.clarin.cmdi.vlo.FacetConstants;
21import eu.clarin.cmdi.vlo.pojo.QueryFacetsSelection;
22import eu.clarin.cmdi.vlo.service.SolrDocumentQueryFactory;
23import org.apache.solr.client.solrj.SolrQuery;
24
25/**
26 *
27 * @author twagoo
28 */
29public class SolrDocumentQueryFactoryImpl extends AbstractSolrQueryFactory implements SolrDocumentQueryFactory{
30   
31    @Override
32    public SolrQuery createDocumentQuery(QueryFacetsSelection selection, int first, int count) {
33        final SolrQuery query = getDefaultDocumentQuery();
34        addQueryFacetParameters(query, selection);
35        query.setStart(first);
36        query.setRows(count);
37        return query;
38    }
39   
40    private SolrQuery getDefaultDocumentQuery() {
41        SolrQuery query = new SolrQuery();
42        query.setFields(FacetConstants.FIELD_NAME, FacetConstants.FIELD_ID, FacetConstants.FIELD_DESCRIPTION, FacetConstants.FIELD_COLLECTION, FacetConstants.FIELD_RESOURCE);
43        query.setSort(SolrQuery.SortClause.asc(FacetConstants.FIELD_NAME));
44        return query;
45    }
46}
Note: See TracBrowser for help on using the repository browser.