01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.test.server.appserver;
06:
07: import com.tc.test.server.ServerParameters;
08:
09: import java.util.Map;
10: import java.util.Properties;
11:
12: /**
13: * Represents parameters common to appservers. Implementing methods should only be called by classes in this enclosing
14: * package.
15: */
16: public interface AppServerParameters extends ServerParameters {
17:
18: Map wars();
19:
20: Properties properties();
21:
22: String instanceName();
23: }
|