}
int res = JOptionPane.showConfirmDialog(Admin.getInstance(), message, title, JOptionPane.YES_NO_OPTION);
if ( res == JOptionPane.YES_OPTION ) {
switch ( type ) {
case DATABASE:
manager.removeRole(id);
break;
case USER:
manager.removeRoleFromUser(userID, id);
break;
}