public class Globals extends Object
Manifest constants for the basic dialog state manager implementation.
Modifier and Type | Field and Description |
---|---|
static String |
CONFIGURATION
Context initialization paramater name under which a comma separated
list of configuration resources to be parsed exists.
|
static String |
DIALOGS
Application scope attribute under which a
Map of
Dialog definitions (keyed by dialog name) is stored. |
static String |
STRATEGY
Context initialization parameter name under which a strategy name
for dealing with saving and restoring dialog context state information
is specified.
|
Constructor and Description |
---|
Globals() |
public static final String CONFIGURATION
Context initialization paramater name under which a comma separated list of configuration resources to be parsed exists.
public static final String DIALOGS
Application scope attribute under which a Map
of
Dialog
definitions (keyed by dialog name) is stored.
public static final String STRATEGY
Context initialization parameter name under which a strategy name for dealing with saving and restoring dialog context state information is specified. Valid values are:
none
- No extra information is stored (default).top
- Information from the top-most Position
on the stack, plus enough information to detect crossing a subdialog
boundary. Such a case will cause an exception to be thrown.stack
- The entire stack of Position
s, including
the corresponding data objects.IMPLEMENTATION NOTE - The feature set supported by this context initialization parameter is experimental, and no guarantees of backwards compatibility in future versions should be assumed.
Copyright © 2004-2013 Apache Software Foundation. All Rights Reserved.