|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ScopeType | |
---|---|
org.springframework.webflow.action | Common action implementations invokable by flow definitions. |
org.springframework.webflow.engine | The implementation of the core flow definition artifacts that serve the basis of the flow execution engine. |
org.springframework.webflow.engine.builder | The flow builder subsystem for building and assembling executable flow definitions. |
org.springframework.webflow.engine.support | Support implementations for internal engine-specific types. |
org.springframework.webflow.execution | Core, stable abstractions for representing runtime executions of flow definitions. |
Uses of ScopeType in org.springframework.webflow.action |
---|
Methods in org.springframework.webflow.action that return ScopeType | |
---|---|
ScopeType |
FormAction.getFormErrorsScope()
Get the scope in which the Errors object will be placed. |
ScopeType |
FormAction.getFormObjectScope()
Get the scope in which the form object will be placed. |
ScopeType |
ActionResultExposer.getResultScope()
Returns the scope the attribute indexing the return value. |
Methods in org.springframework.webflow.action with parameters of type ScopeType | |
---|---|
org.springframework.validation.Errors |
FormObjectAccessor.getCurrentFormErrors(ScopeType scopeType)
Gets the form object Errors tracker from the context, using the form object name
FormObjectAccessor.CURRENT_FORM_OBJECT_ATTRIBUTE . |
java.lang.Object |
FormObjectAccessor.getCurrentFormObject(ScopeType scopeType)
Gets the form object from the context, using the well-known attribute name FormObjectAccessor.CURRENT_FORM_OBJECT_ATTRIBUTE . |
org.springframework.validation.Errors |
FormObjectAccessor.getFormErrors(java.lang.String formObjectName,
ScopeType scopeType)
Gets the form object Errors tracker from the context, using the specified form object name. |
java.lang.Object |
FormObjectAccessor.getFormObject(java.lang.String formObjectName,
java.lang.Class formObjectClass,
ScopeType scopeType)
Gets the form object from the context, using the specified name. |
java.lang.Object |
FormObjectAccessor.getFormObject(java.lang.String formObjectName,
ScopeType scopeType)
Gets the form object from the context, using the specified name. |
void |
FormObjectAccessor.putFormErrors(org.springframework.validation.Errors errors,
ScopeType scopeType)
Expose given errors instance in the specified scope. |
void |
FormObjectAccessor.putFormObject(java.lang.Object formObject,
java.lang.String formObjectName,
ScopeType scopeType)
Expose given form object using given name in specified scope. |
void |
FormObjectAccessor.setCurrentFormErrors(org.springframework.validation.Errors errors,
ScopeType scopeType)
Expose given errors instance using the well known alias FormObjectAccessor.CURRENT_FORM_OBJECT_ATTRIBUTE in the specified
scope. |
void |
FormObjectAccessor.setCurrentFormObject(java.lang.Object formObject,
ScopeType scopeType)
Expose given form object using the well known alias FormObjectAccessor.CURRENT_FORM_OBJECT_ATTRIBUTE in the specified
scope. |
void |
FormAction.setFormErrorsScope(ScopeType errorsScope)
Set the scope in which the Errors object will be placed. |
void |
FormAction.setFormObjectScope(ScopeType scopeType)
Set the scope in which the form object will be placed. |
Constructors in org.springframework.webflow.action with parameters of type ScopeType | |
---|---|
ActionResultExposer(java.lang.String resultName,
ScopeType resultScope)
Creates a action result exposer |
|
SetAction(org.springframework.binding.expression.SettableExpression attributeExpression,
ScopeType scope,
org.springframework.binding.expression.Expression valueExpression)
Creates a new set attribute action. |
Uses of ScopeType in org.springframework.webflow.engine |
---|
Methods in org.springframework.webflow.engine that return ScopeType | |
---|---|
ScopeType |
FlowVariable.getScope()
Returns the scope of this variable. |
Constructors in org.springframework.webflow.engine with parameters of type ScopeType | |
---|---|
FlowVariable(java.lang.String name,
ScopeType scope)
Creates a new flow variable. |
Uses of ScopeType in org.springframework.webflow.engine.builder |
---|
Methods in org.springframework.webflow.engine.builder with parameters of type ScopeType | |
---|---|
protected ActionResultExposer |
AbstractFlowBuilder.result(java.lang.String resultName,
ScopeType resultScope)
Factory method for a result exposer . |
Uses of ScopeType in org.springframework.webflow.engine.support |
---|
Constructors in org.springframework.webflow.engine.support with parameters of type ScopeType | |
---|---|
AttributeExpression(org.springframework.binding.expression.Expression expression,
ScopeType scopeType)
Create a new expression evaluator that executes given expression in the specified scope. |
|
BeanFactoryFlowVariable(java.lang.String name,
org.springframework.beans.factory.BeanFactory beanFactory,
ScopeType scope)
Convenience constructor to create a new bean factory flow variable. |
|
BeanFactoryFlowVariable(java.lang.String variableName,
java.lang.String beanName,
org.springframework.beans.factory.BeanFactory beanFactory,
ScopeType scope)
Creates a new bean factory flow variable. |
|
SimpleFlowVariable(java.lang.String name,
java.lang.Class variableClass,
ScopeType scope)
Creates a new simple flow variable. |
Uses of ScopeType in org.springframework.webflow.execution |
---|
Fields in org.springframework.webflow.execution declared as ScopeType | |
---|---|
static ScopeType |
ScopeType.CONVERSATION
The "conversation" scope type. |
static ScopeType |
ScopeType.FLASH
The "flash" scope type. |
static ScopeType |
ScopeType.FLOW
The "flow" scope type. |
static ScopeType |
ScopeType.REQUEST
The "request" scope type. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |