001 package org.kuali.ole.docstore;
002
003 /**
004 * Class for defining project-wide constants.
005 * User: tirumalesh.b
006 * Date: 24/2/12 Time: 1:16 PM
007 */
008 public class DocStoreConstants {
009 // For DEV/PROD general environment.
010 public static final String DOC_STORE_HOME = "/opt/docstore";
011 public static final String DOC_STORE_PROP_HOME = DOC_STORE_HOME + "/properties";
012
013 // For unit tests.
014 public static final String TEST_DOC_STORE_HOME = "/opt/docstore-test";
015 public static final String TEST_DOC_STORE_PROP_HOME = TEST_DOC_STORE_HOME + "/properties";
016
017 public static boolean isVersioningEnabled = false;
018
019 public static final String DOCSTORE_SETTINGS_DIR_PATH = "/opt/docstore";
020 public static final String RESOURCES_DIR_NAME = "ds-resources";
021
022 }