KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > simulator > distrunner > SpecFactory


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.simulator.distrunner;
5
6 import com.tcsimulator.ClientSpec;
7 import com.tcsimulator.distrunner.ServerSpec;
8
9 import java.util.List JavaDoc;
10
11 public interface SpecFactory {
12
13   public ClientSpec newClientSpec(String JavaDoc hostname, String JavaDoc testHome, int vmCount, int executionCount, List JavaDoc jvmOpts);
14
15   public ServerSpec newServerSpec(String JavaDoc host, String JavaDoc path, int cache, int jmxPort, int dsoPort, List JavaDoc jvmOpts, int type);
16 }
17
Popular Tags