KickJava   Java API By Example, From Geeks To Geeks.

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


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 import java.io.File JavaDoc;
7
8 /**
9  * This interface is to be called by implementations of {@link AbstractAppServer} only. Do not typecast concrete
10  * installations to this type! Do not call these methods under any circumstances.
11  */

12 interface AppServerStartupEnvironment extends AppServerInstallation {
13
14   File JavaDoc serverBaseDir();
15
16   File JavaDoc workingDirectory();
17
18   File JavaDoc serverInstallDirectory();
19
20   String JavaDoc serverType();
21
22   String JavaDoc majorVersion();
23
24   String JavaDoc minorVersion();
25
26   boolean isRepoInstall();
27 }
28
Popular Tags