KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > test > server > appserver > AppServerConstants


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.test.server.appserver;
5
6 /**
7  * Appserver package framework constants.
8  */

9 interface AppServerConstants {
10
11   // subdirectory of appserver working directory containing data files shared across all instances
12
static final String JavaDoc 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 JavaDoc APP_INSTANCE = "app_instance"; // appserver instance name
18
static final String JavaDoc APP_PORT = "app_port"; // appserver instance port
19
}
20
Popular Tags