use of com.redhat.service.smartevents.processor.sources.slack.SlackSource in project sandbox by 5733d9e2be6485d52ffa08870cabdee0.
the class ConnectorsServiceTest method slackSource.
private static Source slackSource() {
Source action = new Source();
action.setType(SlackSource.TYPE);
action.setMapParameters(Map.of(SlackSource.CHANNEL_PARAM, TEST_SOURCE_CHANNEL, SlackSource.TOKEN_PARAM, TEST_SOURCE_TOKEN));
return action;
}
Aggregations