1 package com.explosion.expfmodules.dbstore;
2
3
4 /***
5 * @author Steve.Cowx
6 * This class contains the list of constants which are used by the DbStore Module
7 */
8 public interface DbStoreConstants
9 {
10 public static final String DATABASE_CONNECT_DESCRIPTOR = "dbconnectdescriptor";
11 public static final String INTERNAL_STORE_DIRECTORY = "storedir";
12 public static final String INTERNAL_STORE_CREATED = "storecreated";
13 public static final String DBSTORE_TABLES_FILENAME = "dbstore.tables";
14 public static final String DBSTORE_CONNECTION_NAME = "_dbstore|_|_|_|";
15 }