1 29 30 package com.caucho.management.server; 31 32 import com.caucho.jmx.Description; 33 34 import javax.management.ObjectName ; 35 36 52 public interface ClusterMXBean extends ManagedObjectMXBean { 53 57 63 @Description("The ServerConnectors that are used to create" + 64 " outbound connections to communicate with" + 65 " members of the cluster") 66 public ServerConnectorMXBean []getServers(); 67 68 71 @Description("Hosts are containers that are uniquely identified" 72 + " by the hostname used in making an HTTP request") 73 public HostMXBean []getHosts(); 74 75 78 @Description("The PersistentStore saves persistent and distributed session" + 79 " information") 80 public PersistentStoreMXBean getPersistentStore(); 81 } 82 | Popular Tags |