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.tcsimulator.distrunner;
05:
06: import java.util.List;
07:
08: public interface ServerSpec {
09: public static final int CONTROL_SERVER = 0;
10: public static final int TEST_SERVER = 1;
11: public static final int BACKUP_SERVER = 2;
12:
13: public boolean isNull();
14:
15: public String getHostName();
16:
17: public String getTestHome();
18:
19: public List getJvmOpts();
20:
21: public int getCache();
22:
23: public int getJmxPort();
24:
25: public int getDsoPort();
26:
27: public ServerSpec copy();
28:
29: public int getType();
30: }
|