Package org.springframework.webflow.expression.spel

Examples of org.springframework.webflow.expression.spel.WebFlowSpringELExpressionParser


import org.springframework.webflow.expression.spel.WebFlowSpringELExpressionParser;

public class DefaultBindingModelTests extends AbstractBindingModelTests {

  protected ExpressionParser getExpressionParser() {
    return new WebFlowSpringELExpressionParser(new SpelExpressionParser());
  }
View Full Code Here


  public static FlowBuilderServices getServices() {
    FlowBuilderServices services = new FlowBuilderServices() {
      // The SpEL parser must use the currently configured conversion service.
      public void setConversionService(ConversionService conversionService) {
        super.setConversionService(conversionService);
        setExpressionParser(new WebFlowSpringELExpressionParser(new SpelExpressionParser(), conversionService));
      }
    };
    services.setViewFactoryCreator(new MockViewFactoryCreator());
    services.setConversionService(new DefaultConversionService());
    services.setApplicationContext(createTestApplicationContext());
View Full Code Here

  private ExpressionParser getExpressionParser() {
    if (this.expressionParser != null) {
      return this.expressionParser;
    }
    else {
      return new WebFlowSpringELExpressionParser(new SpelExpressionParser(), this.conversionService);
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.webflow.expression.spel.WebFlowSpringELExpressionParser

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.