| org.springframework.webflow.executor.jsf.AbstractFlowExecutionPropertyResolver org.springframework.webflow.executor.jsf.FlowExecutionPropertyResolver
FlowExecutionPropertyResolver | public class FlowExecutionPropertyResolver extends AbstractFlowExecutionPropertyResolver (Code) | | Custom property resolver that resolves supported properties of the current flow execution.
Supports resolving all scopes as java.util.Maps: "flowScope", "conversationScope", and "flashScope".
Also supports attribute searching when no scope prefix is specified. The search order is
flash, flow, conversation.
author: Keith Donald |
Constructor Summary | |
public | FlowExecutionPropertyResolver(PropertyResolver resolverDelegate) Creates a new flow executon property resolver that resolves flash, flow, and conversation scope attributes. |
FlowExecutionPropertyResolver | public FlowExecutionPropertyResolver(PropertyResolver resolverDelegate)(Code) | | Creates a new flow executon property resolver that resolves flash, flow, and conversation scope attributes.
Parameters: resolverDelegate - the resolver to delegate to when the property is not a flow execution attribute |
Methods inherited from org.springframework.webflow.executor.jsf.AbstractFlowExecutionPropertyResolver | abstract protected Object doGetAttribute(FlowExecution execution, String attributeName)(Code)(Java Doc) abstract protected Class doGetAttributeType(FlowExecution execution, String attributeName)(Code)(Java Doc) abstract protected void doSetAttribute(FlowExecution execution, String attributeName, Object attributeValue)(Code)(Java Doc) final protected PropertyResolver getResolverDelegate()(Code)(Java Doc) public Class getType(Object base, Object property) throws EvaluationException, PropertyNotFoundException(Code)(Java Doc) public Class getType(Object base, int index) throws EvaluationException, PropertyNotFoundException(Code)(Java Doc) public Object getValue(Object base, Object property) throws EvaluationException, PropertyNotFoundException(Code)(Java Doc) public Object getValue(Object base, int index) throws EvaluationException, PropertyNotFoundException(Code)(Java Doc) public boolean isReadOnly(Object base, Object property) throws EvaluationException, PropertyNotFoundException(Code)(Java Doc) public boolean isReadOnly(Object base, int index) throws EvaluationException, PropertyNotFoundException(Code)(Java Doc) public void setValue(Object base, Object property, Object value) throws EvaluationException, PropertyNotFoundException(Code)(Java Doc) public void setValue(Object base, int index, Object value) throws EvaluationException, PropertyNotFoundException(Code)(Java Doc)
|
|
|