public String getTitle()

in ddm-notification-service-core/src/main/java/com/epam/digital/data/platform/notification/core/producer/AbstractNotificationProducer.java [52:57]


  public String getTitle(UserNotificationMessageDto message) {
    var title = message.getNotification().getTitle();
    var templateName = message.getNotification().getTemplateName();
    return Objects.isNull(title) ?
        notificationTemplateService.getTitleByNameAndChannel(templateName, getChannel()) : title;
  }