source: gs3-extensions/solr/trunk/src/src/java/org/greenstone/gsdl3/service/GS2SolrRetrieve.java@ 24647

Last change on this file since 24647 was 24641, checked in by davidb, 13 years ago

Initial cut at Greenstone3 runtime code to support Solr. Solr code based on version 3.3, so this also include an upgraded version of the LuceneWrapper code (gs2build/common-src/indexers/lucene-gs) that works with this version of the support jar files

  • Property svn:executable set to *
File size: 1.4 KB
Line 
1/*
2 * GS2SolrRetrieve.java
3 * Copyright (C) 2005 New Zealand Digital Library, http://www.nzdl.org
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19package org.greenstone.gsdl3.service;
20
21import org.apache.log4j.Logger;
22
23/** Does excatly the same as GS2LuceneRetrieve. Wrap up in a bit of
24 * inheritance so logging messages are more appropriate */
25
26// Consider changing GS2LuceneRetrieve to GS2DocXMLRetrieve and
27// official have this service specified by perl builder/builderproc
28// code
29
30public class GS2SolrRetrieve
31 extends GS2LuceneRetrieve
32{
33
34 static Logger logger = Logger.getLogger(org.greenstone.gsdl3.service.GS2SolrRetrieve.class.getName());
35
36 public GS2SolrRetrieve() {
37 super();
38 }
39}
40
Note: See TracBrowser for help on using the repository browser.