-
- All Implemented Interfaces:
-
ai.tock.bot.definition.StoryStep
public interface SimpleStoryStep implements StoryStep<StoryHandlerDefinition>
StoryStep without custom StoryHandlerDefinition.
-
-
Method Summary
Modifier and Type Method Description abstract StringgetName()The name of the step. IntentAwaregetBaseIntent()IntentAwaregetIntent()Set<IntentAware>getOtherStarterIntents()Set<IntentAware>getSecondaryIntents()Set<StoryStep<StoryHandlerDefinition>>getChildren()BooleangetHasNoChildren()EntityStepSelectiongetEntityStepSelection()-
Methods inherited from class ai.tock.bot.definition.SimpleStoryStep
answer, selectFromAction, selectFromActionAndEntityStepSelection, selectFromBus, selectFromDialog, selectFromDialogAndEntityStepSelection, supportIntent, supportStarterIntent -
Methods inherited from class ai.tock.bot.definition.StoryStep
equals, hashCode, toString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getBaseIntent
IntentAware getBaseIntent()
-
getIntent
IntentAware getIntent()
-
getOtherStarterIntents
Set<IntentAware> getOtherStarterIntents()
-
getSecondaryIntents
Set<IntentAware> getSecondaryIntents()
-
getChildren
Set<StoryStep<StoryHandlerDefinition>> getChildren()
-
getHasNoChildren
Boolean getHasNoChildren()
-
getEntityStepSelection
EntityStepSelection getEntityStepSelection()
-
-
-
-