if(notification == null || type == null) {
return null;
}
final NotificationDTO dto = new NotificationDTO();
dto.setId(notification.getKey().getId()); // FIXME
dto.setDate(notification.getTimestamp());
dto.setMessage(notification.getMessage());
dto.setType(type);
return dto;
}