Interface WebhookConfigurationService
-
- All Known Implementing Classes:
DefaultWebhookConfigurationService
public interface WebhookConfigurationServiceA service that provides convenience methods to interact withWebhookConfigurationModels.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<WebhookConfigurationModel>getWebhookConfigurationsByEventAndItemModel(@NotNull AbstractEvent event, @NotNull ItemModel item)Find WebhookConfigurations that are associated to the given event, and have the Integration Object root item type the same as the given item type
-
-
-
Method Detail
-
getWebhookConfigurationsByEventAndItemModel
java.util.Collection<WebhookConfigurationModel> getWebhookConfigurationsByEventAndItemModel(@NotNull @NotNull AbstractEvent event, @NotNull @NotNull ItemModel item)
Find WebhookConfigurations that are associated to the given event, and have the Integration Object root item type the same as the given item type- Parameters:
event- Event to search foritem- Search Integration Object root items matching the item type- Returns:
- A collection of WebhookConfigurationModels if found, otherwise an empty collection
-
-