01: package org.smartlib.pool.core;
02:
03: /**
04: * Created by IntelliJ IDEA.
05: * User: kerneldebugger
06: * Date: Sep 28, 2005
07: * Time: 8:39:27 PM
08: * To change this template use File | Settings | File Templates.
09: */
10: public interface PoolConstants {
11:
12: // System property
13: public static final String CONFIG_FILE_SYSTEM_PROPERTY = "config.file";
14:
15: public static final String TEST_CONFIG_FILE_SYSTEM_PROPERTY = "test.config.file";
16:
17: }
|