* The rights are get from the spring framework users grantedAuthority(). A
* right is only a string. <br>
*/
private void doCheckRights() {
final UserWorkspace workspace = getUserWorkspace();
window_customerDialog.setVisible(workspace.isAllowed("window_customerDialog"));
tabCustomerDialogAddress.setVisible(workspace.isAllowed("tab_CustomerDialog_Address"));
tabPanelCustomerAddress.setVisible(workspace.isAllowed("tab_CustomerDialog_Address"));
tabCustomerDialogChart.setVisible(workspace.isAllowed("tab_CustomerDialog_Chart"));
tabPanelCustomerDialogChart.setVisible(workspace.isAllowed("tab_CustomerDialog_Chart"));
tabCustomerDialogOrders.setVisible(workspace.isAllowed("tab_CustomerDialog_Orders"));
tabPanelCustomerOrders.setVisible(workspace.isAllowed("tab_CustomerDialog_Orders"));
tabCustomerDialogMemos.setVisible(workspace.isAllowed("tab_CustomerDialog_Memos"));
tabPanelCustomerMemos.setVisible(workspace.isAllowed("tab_CustomerDialog_Memos"));
btnHelp.setVisible(workspace.isAllowed("button_CustomerDialog_btnHelp"));
btnNew.setVisible(workspace.isAllowed("button_CustomerDialog_btnNew"));
btnEdit.setVisible(workspace.isAllowed("button_CustomerDialog_btnEdit"));
btnDelete.setVisible(workspace.isAllowed("button_CustomerDialog_btnDelete"));
btnSave.setVisible(workspace.isAllowed("button_CustomerDialog_btnSave"));
btnClose.setVisible(workspace.isAllowed("button_CustomerDialog_btnClose"));
}