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 ;7 8 /**9 * Represents an application server installation. Instantiated implementations should be shared across multiple10 * appservers.11 */12 public interface AppServerInstallation {13 14 void uninstall() throws Exception ;15 16 File dataDirectory();17 18 File sandboxDirectory();19 }