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: * 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;
15:
16: File dataDirectory();
17:
18: File sandboxDirectory();
19: }
|