public String saveConfiguration() {
try {
customBackingBean.saveView();
int notificationId = customBackingBean.getAlertNotificationId();
AlertNotification notification = alertNotificationManager
.getAlertNotification(getSubject(), notificationId);
if (customBackingBean.getExtraParameters() != null) {
notification.setExtraConfiguration(customBackingBean.getExtraParameters());
} else {
notification.setExtraConfiguration(null);
}
int alertDefinitionId = Integer.parseInt(customBackingBean.getContextId());
alertNotificationManager.updateAlertNotification(getSubject(), alertDefinitionId, notification);
// AlertNotificationsUIBean notificationsUIBean = (AlertNotificationsUIBean) Contexts