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 com.tc.test.server.ServerParameters;7 import com.tc.test.server.tcconfig.TerracottaServerConfigGenerator;8 9 import java.io.File ;10 import java.util.Map ;11 import java.util.Properties ;12 13 /**14 * Represents parameters common to appservers. Implementing methods should only be called by classes in this enclosing15 * package.16 */17 public interface AppServerParameters extends ServerParameters {18 19 Map wars();20 21 Properties properties();22 23 String instanceName();24 25 void enableDSO(TerracottaServerConfigGenerator dsoConfig, File bootJar);26 }27