if (selectionIndex == -1)
{
return;
}
ManagedBean selectedMBean;
//the entries are created from an List<Object> with the attribute values (name first)
List<Object> queueEntry = (List<Object>) _table.getItem(selectionIndex).getData();
String queueName = (String) queueEntry.get(0);
selectedMBean = _serverRegistry.getQueue(queueName, _virtualHost);