A B C D E F G I O P R S T V

A

AbstractState - Class in org.apache.shale.dialog.basic.config
Abstract base class for State definitions.
AbstractState() - Constructor for class org.apache.shale.dialog.basic.config.AbstractState
 
ActionState - Interface in org.apache.shale.dialog.basic.model
An ActionState represents the execution of an action method (typically delegating behavior to appropriate business logic).
ActionStateImpl - Class in org.apache.shale.dialog.basic.config
ActionStateImpl is a basic implementation of ActionState.
ActionStateImpl() - Constructor for class org.apache.shale.dialog.basic.config.ActionStateImpl
 
addState(State) - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Add the specified State to the States owned by this Dialog.
addTransition(Transition) - Method in class org.apache.shale.dialog.basic.config.AbstractState
Add the specified Transition to the Transitions owned by this State.
addTransition(Transition) - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Add the specified Transition to the global Transitions associated with this Dialog.

B

BasicDialogManager - Class in org.apache.shale.dialog.basic
Implementation of DialogContextManager for integrating basic dialog support into the Shale Dialog Manager.
BasicDialogManager() - Constructor for class org.apache.shale.dialog.basic.BasicDialogManager
 
BasicLifecycleListener - Class in org.apache.shale.dialog.basic
ServletContextListener that loads dialog configuration resources at application startup, and cleans up the libraries we depend on at application shutdown.
BasicLifecycleListener() - Constructor for class org.apache.shale.dialog.basic.BasicLifecycleListener
 

C

CONFIGURATION - Static variable in class org.apache.shale.dialog.basic.Globals
Context initialization paramater name under which a comma separated list of configuration resources to be parsed exists.
ConfigurationParser - Class in org.apache.shale.dialog.basic.config
Configuration utility for parsing configuration resources for defining dialogs.
ConfigurationParser() - Constructor for class org.apache.shale.dialog.basic.config.ConfigurationParser
 
contextDestroyed(ServletContextEvent) - Method in class org.apache.shale.dialog.basic.BasicLifecycleListener
Process an application shutdown event.
contextInitialized(ServletContextEvent) - Method in class org.apache.shale.dialog.basic.BasicLifecycleListener
Process an application startup event.
create(FacesContext, String) - Method in class org.apache.shale.dialog.basic.BasicDialogManager
create(FacesContext, String, DialogContext) - Method in class org.apache.shale.dialog.basic.BasicDialogManager

D

Dialog - Interface in org.apache.shale.dialog.basic.model
Overall configuration of an individual dialog.
DialogImpl - Class in org.apache.shale.dialog.basic.config
DialogImpl is a basic implementation of Dialog.
DialogImpl() - Constructor for class org.apache.shale.dialog.basic.config.DialogImpl
 
DIALOGS - Static variable in class org.apache.shale.dialog.basic.Globals
Application scope attribute under which a Map of Dialog definitions (keyed by dialog name) is stored.

E

EndState - Interface in org.apache.shale.dialog.basic.model
EndState is a spacialized ViewState that also marks this as the final State to be executed in the owning Dialog.
EndStateImpl - Class in org.apache.shale.dialog.basic.config
EndStateImpl is a basic implementation of EndState.
EndStateImpl() - Constructor for class org.apache.shale.dialog.basic.config.EndStateImpl
 

F

findState(String) - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Return the specified State, owned by this Dialog, if any.
findState(String) - Method in interface org.apache.shale.dialog.basic.model.Dialog
Return the specified State, owned by this Dialog, if any.
findTransition(String) - Method in class org.apache.shale.dialog.basic.config.AbstractState
Return the Transition for the specified logical outcome, if any; otherwise, return null.
findTransition(String) - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Return the global Transition for the specified logical outcome, if any; otherwise, return null.
findTransition(String) - Method in interface org.apache.shale.dialog.basic.model.Dialog
Return the global Transition for the specified logical outcome, if any; otherwise, return null.
findTransition(String) - Method in interface org.apache.shale.dialog.basic.model.State
Return the Transition for the specified logical outcome, if any; otherwise, return null.

G

get(String) - Method in class org.apache.shale.dialog.basic.BasicDialogManager
 
getDataClass() - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Return the class of a JavaBean to be instantiated as the initial value of the data property of a newly instantiated DialogContext.
getDataClass() - Method in interface org.apache.shale.dialog.basic.model.Dialog
Return the class of a JavaBean to be instantiated as the initial value of the data property of a newly instantiated DialogContext.
getDataClassName() - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Return the data class name for the data property of a newly instantiated DialogContext.
getDialog() - Method in class org.apache.shale.dialog.basic.config.AbstractState

Return the Dialog that owns this State.

getDialog() - Method in interface org.apache.shale.dialog.basic.model.State
Return the Dialog that owns this State.
getDialogName() - Method in class org.apache.shale.dialog.basic.config.SubdialogStateImpl

Return the name of the subordinate dialog to be executed by this state.

getDialogName() - Method in interface org.apache.shale.dialog.basic.model.SubdialogState
Return the name of the subordinate dialog to be executed by this state.
getDialogs() - Method in class org.apache.shale.dialog.basic.config.ConfigurationParser
Return the Map of Dialog instances into which parsed information will be stored, keyed by dialog name.
getMethod() - Method in class org.apache.shale.dialog.basic.config.ActionStateImpl

Return the method binding expression specifying the method to be invoked when this State is entered.

getMethod() - Method in interface org.apache.shale.dialog.basic.model.ActionState
Return the method binding expression specifying the method to be invoked when this State is entered.
getName() - Method in class org.apache.shale.dialog.basic.config.AbstractState

Return the identifier of this State, which must be unique among the States owned by the same Dialog.

getName() - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Return the name of this Dialog.
getName() - Method in interface org.apache.shale.dialog.basic.model.Dialog
Return the name of this Dialog.
getName() - Method in interface org.apache.shale.dialog.basic.model.State
Return the identifier of this State, which must be unique among the States owned by the same Dialog.
getOutcome() - Method in class org.apache.shale.dialog.basic.config.TransitionImpl

Return the logical outcome used to select this Transition.

getOutcome() - Method in interface org.apache.shale.dialog.basic.model.Transition
Return the logical outcome used to select this Transition.
getResource() - Method in class org.apache.shale.dialog.basic.config.ConfigurationParser
Return the URL of the configuration resource to be parsed.
getStart() - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Return the name of the starting State for this Dialog.
getStart() - Method in interface org.apache.shale.dialog.basic.model.Dialog
Return the name of the starting State for this Dialog.
getStateIds() - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Return an Iterator over the names of States that are owned by this Dialog.
getStateIds() - Method in interface org.apache.shale.dialog.basic.model.Dialog
Return an Iterator over the names of States that are owned by this Dialog.
getTarget() - Method in class org.apache.shale.dialog.basic.config.TransitionImpl

Return the target State identifier for this Transition.

getTarget() - Method in interface org.apache.shale.dialog.basic.model.Transition
Return the target State identifier for this Transition.
getTransitionOutcomes() - Method in class org.apache.shale.dialog.basic.config.AbstractState

Return an Iterator over the logical outcomes of local Transitions for this State.

getTransitionOutcomes() - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Return an Iterator over the logical outcomes of global Transitions for this Dialog.
getTransitionOutcomes() - Method in interface org.apache.shale.dialog.basic.model.Dialog
Return an Iterator over the logical outcomes of global Transitions for this Dialog.
getTransitionOutcomes() - Method in interface org.apache.shale.dialog.basic.model.State
Return an Iterator over the logical outcomes of local Transitions for this State.
getViewId() - Method in class org.apache.shale.dialog.basic.config.ViewStateImpl

Return the view identifier of the JavaServer Faces view to render if this state is entered.

getViewId() - Method in interface org.apache.shale.dialog.basic.model.ViewState
Return the view identifier of the JavaServer Faces view to render if this state is entered.
Globals - Class in org.apache.shale.dialog.basic
Manifest constants for the basic dialog state manager implementation.
Globals() - Constructor for class org.apache.shale.dialog.basic.Globals
 

I

isRedirect() - Method in class org.apache.shale.dialog.basic.config.ViewStateImpl

Return true if the transition to this view should be done with a redirect, instead of the normal view creation process.

isRedirect() - Method in interface org.apache.shale.dialog.basic.model.ViewState
Return true if the transition to this view should be done with a redirect, instead of the normal view creation process.
isValidating() - Method in class org.apache.shale.dialog.basic.config.ConfigurationParser
Return a flag indicating whether we will be doing a validating parse or not.

O

org.apache.shale.dialog.basic - package org.apache.shale.dialog.basic
 
org.apache.shale.dialog.basic.config - package org.apache.shale.dialog.basic.config
 
org.apache.shale.dialog.basic.model - package org.apache.shale.dialog.basic.model
 

P

parse() - Method in class org.apache.shale.dialog.basic.config.ConfigurationParser
Parse the configuration resource identified by the resource property, storing resulting information in the Map specified by the dialogs property.

R

remove(DialogContext) - Method in class org.apache.shale.dialog.basic.BasicDialogManager
 
removeState(State) - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Remove the specified State from the States owned by this Dialog, if it is currently registered.
removeTransition(Transition) - Method in class org.apache.shale.dialog.basic.config.AbstractState
Remove the specified Transition from the Transitions owned by this State, if it is currently registered.
removeTransition(Transition) - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Remove the specified Transition from the global Transitions associated with this Dialog, if it is currently registered.

S

setDataClassName(String) - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Set the data class name for the data property of a newly instantiated DialogContext.
setDialog(Dialog) - Method in class org.apache.shale.dialog.basic.config.AbstractState
Set the Dialog that owns this State.
setDialogName(String) - Method in class org.apache.shale.dialog.basic.config.SubdialogStateImpl
Set the name of the subordinate dialog to be executed by this state.
setDialogs(Map) - Method in class org.apache.shale.dialog.basic.config.ConfigurationParser
Set the Map of Dialog instances into which parsed information will be stored, keyed by dialog name.
setMethod(String) - Method in class org.apache.shale.dialog.basic.config.ActionStateImpl
Set the method binding expression specifying the method to be invoked when this State is entered.
setName(String) - Method in class org.apache.shale.dialog.basic.config.AbstractState
Set the identifier of this State, which must be unique among the States owned by the same Dialog.
setName(String) - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Set the name of this Dialog.
setOutcome(String) - Method in class org.apache.shale.dialog.basic.config.TransitionImpl
Set the logical outcome used to select this Transition.
setRedirect(boolean) - Method in class org.apache.shale.dialog.basic.config.ViewStateImpl
Set the redirect flag for this state.
setResource(URL) - Method in class org.apache.shale.dialog.basic.config.ConfigurationParser
Set the URL of the configuration resource to be parsed.
setStart(String) - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Set the name of the starting State for this Dialog.
setTarget(String) - Method in class org.apache.shale.dialog.basic.config.TransitionImpl
Set the target State identifier for this Transition.
setValidating(boolean) - Method in class org.apache.shale.dialog.basic.config.ConfigurationParser
Set a flag indicating whether we will be doing a validating parse or not.
setViewId(String) - Method in class org.apache.shale.dialog.basic.config.ViewStateImpl
Set the view identifier of the JavaServer Faces view to render if this state is entered.
State - Interface in org.apache.shale.dialog.basic.model
A State is an executable entity, within the scope of an owning Dialog.
STRATEGY - Static variable in class org.apache.shale.dialog.basic.Globals
Context initialization parameter name under which a strategy name for dealing with saving and restoring dialog context state information is specified.
SubdialogState - Interface in org.apache.shale.dialog.basic.model
A SubdialogState represents the execution of a separate Dialog, after which processing proceeds within the current Dialog based upon the logical outcome returned by the EndState of the subordinate dialog.
SubdialogStateImpl - Class in org.apache.shale.dialog.basic.config
SubdialogStateImpl is a basic implementation of SubdialogState.
SubdialogStateImpl() - Constructor for class org.apache.shale.dialog.basic.config.SubdialogStateImpl
 

T

toString() - Method in class org.apache.shale.dialog.basic.config.ActionStateImpl
Render a printable version of this instance.
toString() - Method in class org.apache.shale.dialog.basic.config.DialogImpl
Render a printable version of this instance.
toString() - Method in class org.apache.shale.dialog.basic.config.EndStateImpl
Render a printable version of this instance.
toString() - Method in class org.apache.shale.dialog.basic.config.SubdialogStateImpl
Render a printable version of this instance.
toString() - Method in class org.apache.shale.dialog.basic.config.TransitionImpl
Render a printable version of this instance.
toString() - Method in class org.apache.shale.dialog.basic.config.ViewStateImpl
Render a printable version of this instance.
Transition - Interface in org.apache.shale.dialog.basic.model
Description of a transition from the owning State to another State with a specified identifier.
TransitionImpl - Class in org.apache.shale.dialog.basic.config
TransitionImpl is a basic implementation of Transition.
TransitionImpl() - Constructor for class org.apache.shale.dialog.basic.config.TransitionImpl
 

V

ViewState - Interface in org.apache.shale.dialog.basic.model
A ViewState encapsulates the rendering of a JavaServer Faces view, identified by a specified view identifier.
ViewStateImpl - Class in org.apache.shale.dialog.basic.config
ViewStateImpl is a basic implementation of ViewState.
ViewStateImpl() - Constructor for class org.apache.shale.dialog.basic.config.ViewStateImpl
 

A B C D E F G I O P R S T V

Copyright © 2004-2007 Apache Software Foundation. All Rights Reserved.