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