diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-06 10:57:39 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-06 10:58:14 +0300 |
commit | 201121c5e00ee78d85add849f8b071fce076cc0d (patch) | |
tree | bb61d130e1250e80e00326743974389c4e9db7b5 /uitest | |
parent | 83675b500405ef3281f2fa143a091030684d67e5 (diff) | |
download | vaadin-framework-201121c5e00ee78d85add849f8b071fce076cc0d.tar.gz vaadin-framework-201121c5e00ee78d85add849f8b071fce076cc0d.zip |
Rename ApplicationConfiguration -> DeploymentConfiguration (#9402)
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java b/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java index 230a7b9230..b483a9fd9d 100644 --- a/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java +++ b/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java @@ -31,7 +31,7 @@ import javax.servlet.http.HttpServletResponse; import com.vaadin.Application; import com.vaadin.server.AbstractUIProvider; -import com.vaadin.server.ApplicationConfiguration; +import com.vaadin.server.DeploymentConfiguration; import com.vaadin.server.LegacyVaadinServlet; import com.vaadin.server.UIProvider; import com.vaadin.server.VaadinServletSession; @@ -270,8 +270,8 @@ public class ApplicationRunnerServlet extends LegacyVaadinServlet { @Override protected ServletService createServletService( - ApplicationConfiguration applicationConfiguration) { - return new ServletService(this, applicationConfiguration) { + DeploymentConfiguration deploymentConfiguration) { + return new ServletService(this, deploymentConfiguration) { @Override public String getStaticFileLocation(WrappedRequest request) { URIS uris = getApplicationRunnerURIs(WrappedHttpServletRequest |