Package org.springframework.webflow.action

Examples of org.springframework.webflow.action.SetAction


        new FluentParserContext().evaluate(RequestContext.class));
    Class expectedType = null;
    if (StringUtils.hasText(set.getType())) {
      expectedType = toClass(set.getType());
    }
    return new SetAction(nameExpression, valueExpression, expectedType, getLocalContext().getConversionService());
  }
View Full Code Here


    if (StringUtils.hasText(set.getType())) {
      valueParserContext.expectResult(toClass(set.getType()));
    }
    Expression valueExpression = getLocalContext().getExpressionParser().parseExpression(set.getValue(),
        valueParserContext);
    return new SetAction(nameExpression, valueExpression);
  }
View Full Code Here

TOP

Related Classes of org.springframework.webflow.action.SetAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.