public MessageServiceImpl()

in src/main/java/org/openvasp/client/service/impl/MessageServiceImpl.java [34:47]


    public MessageServiceImpl(
            final VaspConfig vaspConfig,
            final ExceptionHandler exceptionHandler,
            final WhisperService whisperService,
            final SignService signService,
            final ConfirmationService confirmationService) {

        this.whisperService = whisperService;
        this.signService = signService;
        this.confirmationService = confirmationService;

        this.senderSigningPrivateKey = vaspConfig.getSigningPrivateKey();
        this.exceptionHandler = exceptionHandler;
    }