01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.simulator.distrunner;
05:
06: import com.tcsimulator.ClientSpec;
07: import com.tcsimulator.distrunner.ServerSpec;
08:
09: import java.util.List;
10:
11: public interface SpecFactory {
12:
13: public ClientSpec newClientSpec(String hostname, String testHome,
14: int vmCount, int executionCount, List jvmOpts);
15:
16: public ServerSpec newServerSpec(String host, String path,
17: int cache, int jmxPort, int dsoPort, List jvmOpts, int type);
18: }
|