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.dsoserver; 5 6 import com.tc.test.server.ServerParameters; 7 8 import java.io.File; 9 10 /** 11 * Server parameters specific to DSO. These methods are read by the DsoServer implementation. 12 */ 13 public interface DsoServerParameters extends ServerParameters { 14 15 File configFile(); 16 17 int dsoPort(); 18 19 int jmxPort(); 20 21 File workingDir(); 22 23 File outputFile(); 24 } 25