View Javadoc

1   package org.kuali.ole.docstore;
2   
3   /**
4    * Class for defining project-wide constants.
5    * User: tirumalesh.b
6    * Date: 24/2/12 Time: 1:16 PM
7    */
8   public class DocStoreConstants {
9       // For DEV/PROD general environment.
10      public static final String DOC_STORE_HOME             = "/opt/docstore";
11      public static final String DOC_STORE_PROP_HOME        = DOC_STORE_HOME + "/properties";
12  
13      // For unit tests.
14      public static final String TEST_DOC_STORE_HOME        = "/opt/docstore-test";
15      public static final String TEST_DOC_STORE_PROP_HOME   = TEST_DOC_STORE_HOME + "/properties";
16  
17      public static boolean      isVersioningEnabled        = false;
18  
19      public static final String DOCSTORE_SETTINGS_DIR_PATH = "/opt/docstore";
20      public static final String RESOURCES_DIR_NAME         = "ds-resources";   
21  
22  }