SierraSystems/ntt-data-notification-service

View on GitHub
src/main/java/com/nttdata/nttdatanotificationservice/service/WebHookService.java

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package com.nttdata.nttdatanotificationservice.service;

import com.nttdata.nttdatanotificationservice.configuration.WebHookParams;
import com.nttdata.nttdatanotificationservice.sources.notification.models.Notification;
import org.springframework.http.ResponseEntity;

public interface WebHookService {
    ResponseEntity<String> postMessage(Notification notification, WebHookParams webHookParams);
}