@Override
public Notification updateNotification(Notification notification) {
Notification result = null;
NotificationEntity notificationEntity = DozerHelper.map(notification,
NotificationEntity.class);
notificationEntity = notificationRepository.merge(notificationEntity);
result = DozerHelper.map(notificationEntity, Notification.class);
return result;