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;
05:
06: import java.util.List;
07:
08: public interface ServerView {
09: public static final int RUNNING = 0;
10: public static final int NOT_RUNNING = 1;
11:
12: public String getHostName();
13:
14: public String getTestHome();
15:
16: public List getJvmOpts();
17:
18: public int getJmxPort();
19:
20: public int getDsoPort();
21:
22: public int getCacheCount();
23:
24: public int getType();
25:
26: public ServerView copy();
27:
28: // public int getClientCount();
29:
30: public int isServerRunning();
31:
32: }
|