View Javadoc

1   /*
2    * MMBase Lucene module
3    *
4    * The contents of this file are subject to the Mozilla Public License
5    * Version 1.0 (the "License"); you may not use this file except in
6    * compliance with the License. You may obtain a copy of the License at
7    * http://www.mozilla.org/MPL/
8    *
9    * Software distributed under the License is distributed on an "AS IS"
10   * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
11   * License for the specific language governing rights and limitations
12   * under the License.
13   */
14  package net.sf.mmapps.modules.lucenesearch;
15  
16  /***
17   * Constants for the Lucene module
18   * 
19   * @author Wouter Heijke
20   * @version $Revision: 1.1 $
21   */
22  public final class Constants {
23      /***
24       * Name of the MMBase Lucene module.
25       */
26      public static final String LUCENE_MODULE_NAME = "lucenemodule";
27  
28      /***
29       * Document node field.
30       */
31      public static final String NODE_FIELD = "node";
32  
33      /***
34       * Document builder field.
35       */
36      public static final String BUILDER_FIELD = "builder";
37  
38      /***
39       * Separator characters for search fields.
40       */
41      public static final String SEARCH_FIELD_SEPARATOR = ". ,";
42  }