public EmailNotificationProducer emailNotificationProducer()

in ddm-notification-service-email/src/main/java/com/epam/digital/data/platform/notification/email/config/EmailNotificationConfig.java [59:69]


  public EmailNotificationProducer emailNotificationProducer(
      KafkaTemplate<String, Object> kafkaTemplate,
      EmailNotificationService emailNotificationService,
      @Qualifier("emailNotificationTemplateService") NotificationTemplateService<String> emailNotificationTemplateService,
      @Value("\u0023{kafkaProperties.topics['email-notifications']}") String topic) {
    return new EmailNotificationProducer(
        emailNotificationTemplateService,
        kafkaTemplate,
        topic,
        emailNotificationService);
  }