1
2
3
4
5
6
7
8
9
10
11
12
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 }