KickJava   Java API By Example, From Geeks To Geeks.

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


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  * Represents an application server installation. Instantiated implementations should be shared across multiple
10  * appservers.
11  */

12 public interface AppServerInstallation {
13
14   void uninstall() throws Exception JavaDoc;
15
16   File JavaDoc dataDirectory();
17
18   File JavaDoc sandboxDirectory();
19 }
Popular Tags