public ChannelVerificationServiceImpl()

in src/main/java/com/epam/digital/data/platform/settings/api/service/impl/ChannelVerificationServiceImpl.java [53:66]


  public ChannelVerificationServiceImpl(
      OtpRepository repository,
      JwtInfoProvider jwtInfoProvider,
      VerificationCodeGenerator generator,
      NotificationService notificationService,
      UserRoleVerifierService userRoleVerifierService,
      @Value("${verification.otp.time-to-live}") int ttl) {
    this.repository = repository;
    this.jwtInfoProvider = jwtInfoProvider;
    this.generator = generator;
    this.notificationService = notificationService;
    this.userRoleVerifierService = userRoleVerifierService;
    this.ttl = ttl;
  }