String message = "<html>The current user does not have administration privileges on the server " +
model.getCurrentServer().getName() + ".<br>Please log in as an administrator to save the changes.</html>";
if (overlayContainer != null) {
OverlayAlert alert = new OverlayAlert(message, title);
alert.setTitleIcon(AlertIcons.ERROR);
alert.show(overlayContainer);
} else {
Alert.error(message, title);
}
}