001/*
002 * This library is part of OpenCms -
003 * the Open Source Content Management System
004 *
005 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
006 *
007 * This library is free software; you can redistribute it and/or
008 * modify it under the terms of the GNU Lesser General Public
009 * License as published by the Free Software Foundation; either
010 * version 2.1 of the License, or (at your option) any later version.
011 *
012 * This library is distributed in the hope that it will be useful,
013 * but WITHOUT ANY WARRANTY; without even the implied warranty of
014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
015 * Lesser General Public License for more details.
016 *
017 * For further information about Alkacon Software, please see the
018 * company website: http://www.alkacon.com
019 *
020 * For further information about OpenCms, please see the
021 * project website: http://www.opencms.org
022 *
023 * You should have received a copy of the GNU Lesser General Public
024 * License along with this library; if not, write to the Free Software
025 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
026 */
027
028package org.opencms.jsp.search.config;
029
030import java.util.Map;
031
032/** Interface the common search configuration must implement. */
033public interface I_CmsSearchConfigurationCommon {
034
035    /**
036     * Extends the search configuration with another given configuration.
037     * @param extensionConfig the extension to add.
038     */
039    void extend(I_CmsSearchConfigurationCommon extensionConfig);
040
041    /** Returns a map from request parameter names to Solr query parts (where the parameter's values are typically inserted).
042     * @return A map from request parameter names to Solr query parts (where the parameter's values are typically inserted).
043     */
044    Map<String, String> getAdditionalParameters();
045
046    /** Returns a flag, indicating if special query characters (e.g., ":", "(", "[" ...) should be escaped in the query string.
047     * @return A flag, indicating if special query characters (e.g., ":", "(", "[" ...) should be escaped in the query string.
048     */
049    boolean getEscapeQueryChars();
050
051    /** Returns the extra params given to Solr.
052     * @return The extra params given to Solr - in format "p1=v1&p2=v2".
053     */
054    String getExtraSolrParams();
055
056    /**Flag, indicating if also resources that are expired.<p>
057     * NOTE: if you are not in the edit mode, the flag is ignored and expired resources are never returned.
058     *
059     * @return Flag, indicating if also resources that are expired should be returned.
060     */
061    boolean getIgnoreExpirationDate();
062
063    /** Returns a flag, indicating if the query and lastquery params should be ignored when
064     *  generating the query. This is useful, if you have a fixed query in the extra Solr params
065     *  configured.
066     * @return A flag, indicating if the query and lastquery params should be ignored.
067     */
068    boolean getIgnoreQueryParam();
069
070    /**Flag, indicating if also resources that are not yet released.<p>
071     * NOTE: if you are not in the edit mode, the flag is ignored and unreleased resources are never returned.
072     *
073     * @return Flag, indicating if also resources that are not yet released should be returned.
074     */
075    boolean getIgnoreReleaseDate();
076
077    /** Returns the parameter name of the request parameter used to send the last query string.
078     * @return The request parameter name used to send the last query string.
079     */
080    String getLastQueryParam();
081
082    /** Returns the number of maximally returned results.
083     *
084     * NOTE: If not explicitly specified, this value is read from the (index specific) system wide configuration.
085     *
086     * @return number of maximally returned results,.
087     */
088    int getMaxReturnedResults();
089
090    /** Modifies the query string according to the specified query modifier.
091     * @param queryString the query to modify.
092     * @return the modified query.
093     */
094
095    String getModifiedQuery(String queryString);
096
097    /** Returns the modifier for queries.
098     * @return the query modifier.
099     */
100    String getQueryModifier();
101
102    /** Returns the parameter name of the request parameter used to send the current query string.
103     * @return The request parameter name used to send the current query string.
104     */
105    String getQueryParam();
106
107    /** Returns the parameter name of the request parameter used to indicate if the search form is loaded the first time or repeatedly.
108     * @return The request parameter name used to indicate if the search form is loaded the first time or repeatedly.
109     */
110    String getReloadedParam();
111
112    /** Returns a flag, indicating if for an empty search query, search should be performed using a wildcard.
113     * @return A flag, indicating if for an empty search query, search should be performed using a wildcard.
114     */
115    boolean getSearchForEmptyQueryParam();
116
117    /** Returns the Solr core that should be used. Can also be <code>null</code>.
118     * @return The Solr core to use, or <code>null</code> if none is configured.
119     */
120    String getSolrCore();
121
122    /** Returns the Solr index that should be used.
123     * @return The Solr index to use.
124     */
125    String getSolrIndex();
126
127}