1 4 package com.tc.management.beans; 5 6 import com.tc.config.schema.L2Info; 7 import com.tc.management.TerracottaMBean; 8 9 public interface TCServerInfoMBean extends TerracottaMBean { 10 11 boolean isStarted(); 12 13 boolean isActive(); 14 15 long getStartTime(); 16 17 long getActivateTime(); 18 19 void stop(); 20 21 void shutdown(); 22 23 String getVersion(); 24 25 String getBuildID(); 26 27 String getCopyright(); 28 29 String getHealthStatus(); 30 31 String getDescriptionOfCapabilities(); 32 33 L2Info[] getL2Info(); 34 35 } 36 | Popular Tags |