Package com.flowable.action.api.bot
Interface BotActionResult
-
- All Known Implementing Classes:
BaseBotActionResult
,BpmnTestActionBot.TestBotActionResult
public interface BotActionResult
The result when invoking a bot action.- Author:
- Filip Hrisafov, Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description Intent
getIntent()
Action to perform in the user interface right after executing the bot action.Map<String,Object>
getPayload()
Deprecated.usegetPayloadNode()
insteaddefault com.fasterxml.jackson.databind.JsonNode
getPayloadNode()
The information from invoking the action.
-
-
-
Method Detail
-
getPayload
@Deprecated Map<String,Object> getPayload()
Deprecated.usegetPayloadNode()
insteadThe information from invoking the action.- Returns:
- the information that should be displayed to the user
-
getPayloadNode
default com.fasterxml.jackson.databind.JsonNode getPayloadNode()
The information from invoking the action.- Returns:
- the information that should be displayed to the user
-
getIntent
Intent getIntent()
Action to perform in the user interface right after executing the bot action.- Returns:
- UI action to perform in the frontend
-
-