KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tcsimulator > ServerView


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.tcsimulator;
5
6 import java.util.List JavaDoc;
7
8 public interface ServerView {
9   public static final int RUNNING = 0;
10   public static final int NOT_RUNNING = 1;
11
12   public String JavaDoc getHostName();
13
14   public String JavaDoc getTestHome();
15
16   public List JavaDoc 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 }
33
Popular Tags