01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.management.exposed;
05:
06: import com.tc.management.TerracottaMBean;
07:
08: public interface TerracottaClusterMBean extends TerracottaMBean {
09:
10: boolean isConnected();
11:
12: String getNodeId();
13:
14: String[] getNodesInCluster();
15: }
|