use of com.redhat.service.smartevents.processor.actions.webhook.WebhookAction in project sandbox by 5733d9e2be6485d52ffa08870cabdee0.
the class ConnectorsServiceTest method webhookAction.
private static Action webhookAction() {
Action action = new Action();
action.setType(WebhookAction.TYPE);
action.setMapParameters(Map.of(WebhookAction.ENDPOINT_PARAM, TEST_ACTION_WEBHOOK));
return action;
}
Aggregations