*
* @exception ConnectException If the admin connection is closed or broken.
* @exception AdminException If the request fails.
*/
public List getClusterFellows() throws ConnectException, AdminException {
ClusterList request = new ClusterList(agentId);
ClusterListReply reply = (ClusterListReply) doRequest(request);
List topics = reply.getDestinations();
List list = new ArrayList();
if (topics != null) {