public ExcerptService()

in src/main/java/com/epam/digital/data/platform/history/service/ExcerptService.java [48:59]


  public ExcerptService(
      @Value("${excerpt.statusCheck.maxAttempts}") int excerptStatusCheckMaxAttempts,
      @Value("${signature.enabled}") boolean signatureEnabled,
      ExcerptRestClient excerptRestClient,
      DigitalSignatureService digitalSignatureService,
      ThreadSleepService threadSleepService) {
    this.excerptStatusCheckMaxAttempts = excerptStatusCheckMaxAttempts;
    this.excerptRestClient = excerptRestClient;
    this.digitalSignatureService = digitalSignatureService;
    this.threadSleepService = threadSleepService;
    this.signatureEnabled = signatureEnabled;
  }