Package net.sf.archimede.search

Examples of net.sf.archimede.search.SearchQueryManager


        if ((buildQueryForm() == null) || buildQueryForm().trim().equals("")) {
            return "";
        }

        try {
            SearchQueryManager sqm = SearchQueryManager.getInstance(IndexerServlet.getIndexConfigFilePath(), IndexerServlet.getIndexDir());
            String query = buildQueryForm();
            System.out.println("Query Print :"+query);
            List queryResults = sqm.searchFolders(query);
            this.results = new ListDataModel();
            this.results.setWrappedData(queryResults);
        } catch (Exception e) {
            e.printStackTrace();
        }
View Full Code Here

TOP

Related Classes of net.sf.archimede.search.SearchQueryManager

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.