use of org.wso2.carbon.apimgt.notification.WebhooksDeliveryEventHandler in project carbon-apimgt by wso2.
the class ApimgtNotificationServiceComponent method activate.
@Activate
protected void activate(ComponentContext ctxt) {
ctxt.getBundleContext().registerService(KeyManagerEventHandler.class, new DefaultKeyManagerEventHandlerImpl(), null);
ctxt.getBundleContext().registerService(EventHandler.class, new WebhooksSubscriptionEventHandler(), null);
ctxt.getBundleContext().registerService(EventHandler.class, new WebhooksDeliveryEventHandler(), null);
ctxt.getBundleContext().registerService(NotificationEventService.class, new NotificationEventService(), null);
}
Aggregations