public void role() throws Exception {
Connection connection = getEntitlementConnection();
if (connection == null)
return;
RoleTablePanel panel = new RoleTablePanel(connection);
if (panel.getReady() == false)
return;
new CommonDlg(Globals.masterWindow, Phrase.get("TX_ROLE_TABLE"), panel);
connection.close();
}