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: import java.io.File;
07:
08: /**
09: * 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 workingDirectory();
15:
16: File serverInstallDirectory();
17:
18: String serverType();
19:
20: String majorVersion();
21:
22: String minorVersion();
23:
24: boolean isRepoInstall();
25: }
|