1 4 package com.tcsimulator; 5 6 import java.util.List ; 7 8 public interface ServerView { 9 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 30 public int isServerRunning(); 31 32 } 33 | Popular Tags |