((String) mBServer.getAttribute(ename, attribute));
// Build the list of available hosts
attribute = "hosts";
ArrayList hosts = new ArrayList();
hosts.add(new LabelValueBean
(resources.getMessage(locale, "list.none"), ""));
Iterator items = Lists.getHosts(mBServer, sname).iterator();
while (items.hasNext()) {
ObjectName hname = new ObjectName((String) items.next());
String name = hname.getKeyProperty("host");
if (name!=null) {
hosts.add(new LabelValueBean(name, name));
}
}
serviceFm.setHostNameVals(hosts);
} catch (Throwable t) {