summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-11-06 16:25:02 +0000
committerVaadin Code Review <review@vaadin.com>2012-11-06 16:25:02 +0000
commitf103239ed1b28e854a022985158c0c6d72223d1f (patch)
tree7cd6efa387211ddf133ffd0a47567c8b927fba95 /server
parent70200e43f567d11462fb7dd8614c1546e9c4c270 (diff)
parent00863079b2fda73b5737de747fb10a4570dd9557 (diff)
downloadvaadin-framework-f103239ed1b28e854a022985158c0c6d72223d1f.tar.gz
vaadin-framework-f103239ed1b28e854a022985158c0c6d72223d1f.zip
Merge "Moved classes from com.vaadin to com.vaadin.server (#10145)"
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/server/DefaultDeploymentConfiguration.java (renamed from server/src/com/vaadin/DefaultDeploymentConfiguration.java)4
-rw-r--r--server/src/com/vaadin/server/LegacyApplication.java (renamed from server/src/com/vaadin/LegacyApplication.java)4
-rw-r--r--server/src/com/vaadin/server/LegacyApplicationUIProvider.java1
-rw-r--r--server/src/com/vaadin/server/LegacyVaadinPortlet.java1
-rw-r--r--server/src/com/vaadin/server/LegacyVaadinServlet.java1
-rw-r--r--server/src/com/vaadin/server/ServletPortletHelper.java1
-rw-r--r--server/src/com/vaadin/server/VaadinPortlet.java1
-rw-r--r--server/src/com/vaadin/server/VaadinService.java1
-rw-r--r--server/src/com/vaadin/server/VaadinServiceSession.java1
-rw-r--r--server/src/com/vaadin/server/VaadinServlet.java1
-rw-r--r--server/src/com/vaadin/ui/LegacyWindow.java4
-rw-r--r--server/tests/src/com/vaadin/server/TestAbstractApplicationServletStaticFilesLocation.java1
-rw-r--r--server/tests/src/com/vaadin/tests/server/component/ui/CustomUIClassLoader.java2
-rw-r--r--server/tests/src/com/vaadin/tests/server/component/window/AddRemoveSubWindow.java2
14 files changed, 6 insertions, 19 deletions
diff --git a/server/src/com/vaadin/DefaultDeploymentConfiguration.java b/server/src/com/vaadin/server/DefaultDeploymentConfiguration.java
index 1d804c99aa..07a810c64c 100644
--- a/server/src/com/vaadin/DefaultDeploymentConfiguration.java
+++ b/server/src/com/vaadin/server/DefaultDeploymentConfiguration.java
@@ -14,13 +14,11 @@
* the License.
*/
-package com.vaadin;
+package com.vaadin.server;
import java.util.Properties;
import java.util.logging.Logger;
-import com.vaadin.server.Constants;
-import com.vaadin.server.DeploymentConfiguration;
/**
* The default implementation of {@link DeploymentConfiguration} based on a base
diff --git a/server/src/com/vaadin/LegacyApplication.java b/server/src/com/vaadin/server/LegacyApplication.java
index c28482e2a5..6ac7ad2e0c 100644
--- a/server/src/com/vaadin/LegacyApplication.java
+++ b/server/src/com/vaadin/server/LegacyApplication.java
@@ -14,7 +14,7 @@
* the License.
*/
-package com.vaadin;
+package com.vaadin.server;
import java.net.URL;
import java.util.Collection;
@@ -23,10 +23,8 @@ import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
-import com.vaadin.server.DefaultErrorListener;
import com.vaadin.server.Terminal.ErrorEvent;
import com.vaadin.server.Terminal.ErrorListener;
-import com.vaadin.server.VaadinServiceSession;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.UI;
diff --git a/server/src/com/vaadin/server/LegacyApplicationUIProvider.java b/server/src/com/vaadin/server/LegacyApplicationUIProvider.java
index e2a58ba1bc..467e1c4a5e 100644
--- a/server/src/com/vaadin/server/LegacyApplicationUIProvider.java
+++ b/server/src/com/vaadin/server/LegacyApplicationUIProvider.java
@@ -21,7 +21,6 @@ import java.net.URL;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
-import com.vaadin.LegacyApplication;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.UI;
diff --git a/server/src/com/vaadin/server/LegacyVaadinPortlet.java b/server/src/com/vaadin/server/LegacyVaadinPortlet.java
index f186971f7c..92079653c7 100644
--- a/server/src/com/vaadin/server/LegacyVaadinPortlet.java
+++ b/server/src/com/vaadin/server/LegacyVaadinPortlet.java
@@ -20,7 +20,6 @@ import javax.portlet.PortletConfig;
import javax.portlet.PortletException;
import javax.portlet.PortletRequest;
-import com.vaadin.LegacyApplication;
public class LegacyVaadinPortlet extends VaadinPortlet {
diff --git a/server/src/com/vaadin/server/LegacyVaadinServlet.java b/server/src/com/vaadin/server/LegacyVaadinServlet.java
index d2f55211e5..8ee10f5176 100644
--- a/server/src/com/vaadin/server/LegacyVaadinServlet.java
+++ b/server/src/com/vaadin/server/LegacyVaadinServlet.java
@@ -20,7 +20,6 @@ import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
-import com.vaadin.LegacyApplication;
public class LegacyVaadinServlet extends VaadinServlet {
diff --git a/server/src/com/vaadin/server/ServletPortletHelper.java b/server/src/com/vaadin/server/ServletPortletHelper.java
index 15c3e18959..1bcfdf8692 100644
--- a/server/src/com/vaadin/server/ServletPortletHelper.java
+++ b/server/src/com/vaadin/server/ServletPortletHelper.java
@@ -4,7 +4,6 @@ import java.io.Serializable;
import java.util.Locale;
import java.util.Properties;
-import com.vaadin.LegacyApplication;
import com.vaadin.shared.ApplicationConstants;
import com.vaadin.ui.Component;
import com.vaadin.ui.UI;
diff --git a/server/src/com/vaadin/server/VaadinPortlet.java b/server/src/com/vaadin/server/VaadinPortlet.java
index b18eff2f09..818cde2879 100644
--- a/server/src/com/vaadin/server/VaadinPortlet.java
+++ b/server/src/com/vaadin/server/VaadinPortlet.java
@@ -50,7 +50,6 @@ import javax.servlet.http.HttpServletResponse;
import com.liferay.portal.kernel.util.PortalClassInvoker;
import com.liferay.portal.kernel.util.PropsUtil;
-import com.vaadin.DefaultDeploymentConfiguration;
import com.vaadin.server.AbstractCommunicationManager.Callback;
import com.vaadin.ui.UI;
import com.vaadin.util.CurrentInstance;
diff --git a/server/src/com/vaadin/server/VaadinService.java b/server/src/com/vaadin/server/VaadinService.java
index 05e79500bb..d79210206b 100644
--- a/server/src/com/vaadin/server/VaadinService.java
+++ b/server/src/com/vaadin/server/VaadinService.java
@@ -32,7 +32,6 @@ import javax.portlet.PortletContext;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
-import com.vaadin.LegacyApplication;
import com.vaadin.annotations.PreserveOnRefresh;
import com.vaadin.event.EventRouter;
import com.vaadin.shared.ui.ui.UIConstants;
diff --git a/server/src/com/vaadin/server/VaadinServiceSession.java b/server/src/com/vaadin/server/VaadinServiceSession.java
index de5accbfd0..37eebe3a4c 100644
--- a/server/src/com/vaadin/server/VaadinServiceSession.java
+++ b/server/src/com/vaadin/server/VaadinServiceSession.java
@@ -36,7 +36,6 @@ import javax.servlet.http.HttpSession;
import javax.servlet.http.HttpSessionBindingEvent;
import javax.servlet.http.HttpSessionBindingListener;
-import com.vaadin.LegacyApplication;
import com.vaadin.annotations.PreserveOnRefresh;
import com.vaadin.data.util.converter.Converter;
import com.vaadin.data.util.converter.ConverterFactory;
diff --git a/server/src/com/vaadin/server/VaadinServlet.java b/server/src/com/vaadin/server/VaadinServlet.java
index 67f3691855..eb84e54d85 100644
--- a/server/src/com/vaadin/server/VaadinServlet.java
+++ b/server/src/com/vaadin/server/VaadinServlet.java
@@ -41,7 +41,6 @@ import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
-import com.vaadin.DefaultDeploymentConfiguration;
import com.vaadin.sass.ScssStylesheet;
import com.vaadin.server.AbstractCommunicationManager.Callback;
import com.vaadin.shared.ApplicationConstants;
diff --git a/server/src/com/vaadin/ui/LegacyWindow.java b/server/src/com/vaadin/ui/LegacyWindow.java
index 572d3f8490..88559af0b5 100644
--- a/server/src/com/vaadin/ui/LegacyWindow.java
+++ b/server/src/com/vaadin/ui/LegacyWindow.java
@@ -7,7 +7,7 @@ package com.vaadin.ui;
import java.net.MalformedURLException;
import java.net.URL;
-import com.vaadin.LegacyApplication;
+import com.vaadin.server.LegacyApplication;
import com.vaadin.server.Page;
import com.vaadin.server.Resource;
import com.vaadin.server.VaadinRequest;
@@ -18,7 +18,7 @@ import com.vaadin.shared.ui.BorderStyle;
/**
* Helper class to emulate the main window from Vaadin 6 using UIs. This
* class should be used in the same way as Window used as a browser level
- * window in Vaadin 6 with {@link com.vaadin.LegacyApplication}
+ * window in Vaadin 6 with {@link com.vaadin.server.LegacyApplication}
*/
@Deprecated
public class LegacyWindow extends UI {
diff --git a/server/tests/src/com/vaadin/server/TestAbstractApplicationServletStaticFilesLocation.java b/server/tests/src/com/vaadin/server/TestAbstractApplicationServletStaticFilesLocation.java
index cd64622392..5f9269c6e3 100644
--- a/server/tests/src/com/vaadin/server/TestAbstractApplicationServletStaticFilesLocation.java
+++ b/server/tests/src/com/vaadin/server/TestAbstractApplicationServletStaticFilesLocation.java
@@ -13,7 +13,6 @@ import javax.servlet.http.HttpServletRequest;
import junit.framework.TestCase;
-import com.vaadin.DefaultDeploymentConfiguration;
public class TestAbstractApplicationServletStaticFilesLocation extends TestCase {
diff --git a/server/tests/src/com/vaadin/tests/server/component/ui/CustomUIClassLoader.java b/server/tests/src/com/vaadin/tests/server/component/ui/CustomUIClassLoader.java
index 82b9944371..71749ed964 100644
--- a/server/tests/src/com/vaadin/tests/server/component/ui/CustomUIClassLoader.java
+++ b/server/tests/src/com/vaadin/tests/server/component/ui/CustomUIClassLoader.java
@@ -8,7 +8,7 @@ import junit.framework.TestCase;
import org.easymock.EasyMock;
-import com.vaadin.DefaultDeploymentConfiguration;
+import com.vaadin.server.DefaultDeploymentConfiguration;
import com.vaadin.server.DefaultUIProvider;
import com.vaadin.server.DeploymentConfiguration;
import com.vaadin.server.UIClassSelectionEvent;
diff --git a/server/tests/src/com/vaadin/tests/server/component/window/AddRemoveSubWindow.java b/server/tests/src/com/vaadin/tests/server/component/window/AddRemoveSubWindow.java
index 0ba1ce0859..031b332ee7 100644
--- a/server/tests/src/com/vaadin/tests/server/component/window/AddRemoveSubWindow.java
+++ b/server/tests/src/com/vaadin/tests/server/component/window/AddRemoveSubWindow.java
@@ -6,7 +6,7 @@ import static org.junit.Assert.assertTrue;
import org.junit.Test;
-import com.vaadin.LegacyApplication;
+import com.vaadin.server.LegacyApplication;
import com.vaadin.server.VaadinServiceSession;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.UI;