DialogStateManagerConfiguration Class

  • java.lang.Object
    • com.microsoft.bot.dialogs.memory.DialogStateManagerConfiguration

public class DialogStateManagerConfiguration

Configures the path resolvers and memory scopes for the dialog state manager.

Constructor Summary

Constructor Description
DialogStateManagerConfiguration()

Method Summary

Modifier and Type Method and Description
java.util.List<MemoryScope> getMemoryScopes()
java.util.List<PathResolver> getPathResolvers()
void setMemoryScopes(List<MemoryScope> withMemoryScopes)
void setPathResolvers(List<PathResolver> withPathResolvers)

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

DialogStateManagerConfiguration

public DialogStateManagerConfiguration()

Method Details

getMemoryScopes

public List getMemoryScopes()

Returns:

Returns the list of MemoryScopes.

getPathResolvers

public List getPathResolvers()

Returns:

Returns the list of PathResolvers.

setMemoryScopes

public void setMemoryScopes(List withMemoryScopes)

Parameters:

withMemoryScopes - Set the list of MemoryScopes.

setPathResolvers

public void setPathResolvers(List withPathResolvers)

Parameters:

withPathResolvers - Set the list of PathResolvers.

Applies to