Uses of Class
io.jans.ca.plugin.adminui.model.webhook.WebhookEntry
-
Packages that use WebhookEntry Package Description io.jans.ca.plugin.adminui.model.webhook io.jans.ca.plugin.adminui.rest.webhook io.jans.ca.plugin.adminui.service.webhook -
-
Uses of WebhookEntry in io.jans.ca.plugin.adminui.model.webhook
Constructors in io.jans.ca.plugin.adminui.model.webhook with parameters of type WebhookEntry Constructor Description WebhookEntry(WebhookEntry webhookEntry)
-
Uses of WebhookEntry in io.jans.ca.plugin.adminui.rest.webhook
Methods in io.jans.ca.plugin.adminui.rest.webhook with parameters of type WebhookEntry Modifier and Type Method Description jakarta.ws.rs.core.Response
WebhookResource. addWebhook(@Valid WebhookEntry webhook)
jakarta.ws.rs.core.Response
WebhookResource. updateWebhook(@Valid WebhookEntry webhook)
-
Uses of WebhookEntry in io.jans.ca.plugin.adminui.service.webhook
Methods in io.jans.ca.plugin.adminui.service.webhook that return WebhookEntry Modifier and Type Method Description WebhookEntry
WebhookService. addWebhook(WebhookEntry webhook)
The function adds a webhook entry to a database, assigns it a unique ID, and associates it with Aui features if provided.WebhookEntry
WebhookService. updateWebhook(WebhookEntry webhook)
The function updates a webhook entry, validates the entry, and performs additional operations if necessary.Methods in io.jans.ca.plugin.adminui.service.webhook that return types with arguments of type WebhookEntry Modifier and Type Method Description List<WebhookEntry>
WebhookService. getWebhookByIds(Set<String> ids)
The function `getWebhookByIds` retrieves a list of `WebhookEntry` objects based on a list of webhook IDs.List<WebhookEntry>
WebhookService. getWebhooksByFeatureId(String featureId)
io.jans.orm.model.PagedResult<WebhookEntry>
WebhookService. searchWebhooks(io.jans.model.SearchRequest searchRequest)
The function searches for webhook entries based on the provided search criteria and returns a paged result.Methods in io.jans.ca.plugin.adminui.service.webhook with parameters of type WebhookEntry Modifier and Type Method Description WebhookEntry
WebhookService. addWebhook(WebhookEntry webhook)
The function adds a webhook entry to a database, assigns it a unique ID, and associates it with Aui features if provided.void
WebhookService. removeWebhook(WebhookEntry webhook)
The function removes a webhook entry and throws an exception if there is an error.WebhookEntry
WebhookService. updateWebhook(WebhookEntry webhook)
The function updates a webhook entry, validates the entry, and performs additional operations if necessary.void
WebhookService. validateWebhookEntry(WebhookEntry webhookEntry)
Constructors in io.jans.ca.plugin.adminui.service.webhook with parameters of type WebhookEntry Constructor Description WebhookCallable(WebhookEntry webhook, org.slf4j.Logger log)
-