01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.test.server.appserver;
05:
06: /**
07: * Appserver package framework constants.
08: */
09: interface AppServerConstants {
10:
11: // subdirectory of appserver working directory containing data files shared across all instances
12: static final String DATA_DIR = "data";
13: // subdirectory of appserver working directory containing specific appserver instances
14: // static final String SANDBOX = "sandbox";
15:
16: // Default system properties available to appserver instances (used by servlets)
17: static final String APP_INSTANCE = "app_instance"; // appserver instance name
18: static final String APP_PORT = "app_port"; // appserver instance port
19: }
|