IN PROGRESS - issue SWF-388: Extract all JSF-related code into a separate component project

http://opensource.atlassian.com/projects/spring/browse/SWF-388
This commit is contained in:
Jeremy Grelle
2007-08-16 22:22:56 +00:00
parent 62ddfa9e1a
commit dd740b9018
9 changed files with 11 additions and 11 deletions

View File

@@ -23,7 +23,7 @@ import javax.faces.el.ReferenceSyntaxException;
import junit.framework.TestCase;
import org.easymock.EasyMock;
import org.springframework.faces.el.FlowPropertyResolver;
import org.springframework.faces.webflow.el.FlowPropertyResolver;
import org.springframework.webflow.execution.FlowExecution;
import org.springframework.webflow.test.MockFlowSession;

View File

@@ -22,9 +22,9 @@ import javax.faces.el.VariableResolver;
import junit.framework.TestCase;
import org.easymock.EasyMock;
import org.springframework.faces.el.FlowVariableResolver;
import org.springframework.faces.webflow.FlowExecutionHolder;
import org.springframework.faces.webflow.FlowExecutionHolderUtils;
import org.springframework.faces.webflow.el.FlowVariableResolver;
import org.springframework.webflow.execution.FlowExecution;
import org.springframework.webflow.execution.repository.FlowExecutionKey;

View File

@@ -8,10 +8,10 @@ import org.easymock.EasyMock;
import org.jboss.el.ExpressionFactoryImpl;
import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
import org.springframework.core.io.ClassPathResource;
import org.springframework.faces.el.DelegatingFlowVariableResolver;
import org.springframework.faces.el.FlowPropertyResolver;
import org.springframework.faces.el.FlowVariableResolver;
import org.springframework.faces.el.Jsf11ELExpressionParser;
import org.springframework.faces.webflow.el.DelegatingFlowVariableResolver;
import org.springframework.faces.webflow.el.FlowPropertyResolver;
import org.springframework.faces.webflow.el.FlowVariableResolver;
import org.springframework.util.ResourceUtils;
import org.springframework.web.context.support.GenericWebApplicationContext;
import org.springframework.web.jsf.DelegatingVariableResolver;