KickJava   Java API By Example, From Geeks To Geeks.

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


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 JavaDoc;
10 import java.util.Map JavaDoc;
11 import java.util.Properties JavaDoc;
12
13 /**
14  * Represents parameters common to appservers. Implementing methods should only be called by classes in this enclosing
15  * package.
16  */

17 public interface AppServerParameters extends ServerParameters {
18
19   Map JavaDoc wars();
20
21   Properties JavaDoc properties();
22
23   String JavaDoc instanceName();
24   
25   void enableDSO(TerracottaServerConfigGenerator dsoConfig, File JavaDoc bootJar);
26 }
27
Popular Tags