@Override
public void notify(final Long userId, final String templateName, final Map<String, Object> context) {
NotificationTemplate template = notificationTemplateService.findByName(templateName);
if(template == null) {
throw new TemplateNotFoundException(templateName);
}
NotificationData data = new NotificationData();
data.setUserId(userId);