]> source.dussan.org Git - vaadin-framework.git/commitdiff
Remove servlet and portlet request listeners (#9402)
authorLeif Åstrand <leif@vaadin.com>
Wed, 5 Sep 2012 09:24:14 +0000 (12:24 +0300)
committerLeif Åstrand <leif@vaadin.com>
Wed, 5 Sep 2012 09:24:14 +0000 (12:24 +0300)
server/src/com/vaadin/server/HttpServletRequestListener.java [deleted file]
server/src/com/vaadin/server/PortletRequestListener.java [deleted file]
server/src/com/vaadin/server/VaadinPortlet.java
server/src/com/vaadin/server/VaadinServlet.java
uitest/src/com/vaadin/tests/components/window/AttachShouldBeCalledForSubWindows.java

diff --git a/server/src/com/vaadin/server/HttpServletRequestListener.java b/server/src/com/vaadin/server/HttpServletRequestListener.java
deleted file mode 100644 (file)
index e871dca..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright 2011 Vaadin Ltd.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- * 
- * http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-package com.vaadin.server;
-
-import java.io.Serializable;
-
-import javax.servlet.Filter;
-import javax.servlet.http.Cookie;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-import com.vaadin.Application;
-
-/**
- * {@link Application} that implements this interface gets notified of request
- * start and end by terminal.
- * <p>
- * Interface can be used for several helper tasks including:
- * <ul>
- * <li>Opening and closing database connections
- * <li>Implementing {@link ThreadLocal}
- * <li>Setting/Getting {@link Cookie}
- * </ul>
- * <p>
- * Alternatives for implementing similar features are are Servlet {@link Filter}
- * s and {@link ApplicationContext.TransactionListener}s in Vaadin.
- * 
- * @since 6.2
- * @see PortletRequestListener
- */
-public interface HttpServletRequestListener extends Serializable {
-
-    /**
-     * This method is called before {@link Terminal} applies the request to
-     * Application.
-     * 
-     * @param request
-     * @param response
-     */
-    public void onRequestStart(HttpServletRequest request,
-            HttpServletResponse response);
-
-    /**
-     * This method is called at the end of each request.
-     * 
-     * @param request
-     * @param response
-     */
-    public void onRequestEnd(HttpServletRequest request,
-            HttpServletResponse response);
-}
\ No newline at end of file
diff --git a/server/src/com/vaadin/server/PortletRequestListener.java b/server/src/com/vaadin/server/PortletRequestListener.java
deleted file mode 100644 (file)
index 4562ddf..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright 2011 Vaadin Ltd.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- * 
- * http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-package com.vaadin.server;
-
-import java.io.Serializable;
-
-import javax.portlet.PortletRequest;
-import javax.portlet.PortletResponse;
-import javax.servlet.Filter;
-
-import com.vaadin.Application;
-
-/**
- * An {@link Application} that implements this interface gets notified of
- * request start and end by the terminal. It is quite similar to the
- * {@link HttpServletRequestListener}, but the parameters are Portlet specific.
- * If an Application is deployed as both a Servlet and a Portlet, one most
- * likely needs to implement both.
- * <p>
- * Only JSR 286 style Portlets are supported.
- * <p>
- * The interface can be used for several helper tasks including:
- * <ul>
- * <li>Opening and closing database connections
- * <li>Implementing {@link ThreadLocal}
- * <li>Inter-portlet communication
- * </ul>
- * <p>
- * Alternatives for implementing similar features are are Servlet {@link Filter}
- * s and {@link ApplicationContext.TransactionListener}s in Vaadin.
- * 
- * @since 6.2
- * @see HttpServletRequestListener
- */
-public interface PortletRequestListener extends Serializable {
-
-    /**
-     * This method is called before {@link Terminal} applies the request to
-     * Application.
-     * 
-     * @param requestData
-     *            the {@link PortletRequest} about to change Application state
-     */
-    public void onRequestStart(PortletRequest request, PortletResponse response);
-
-    /**
-     * This method is called at the end of each request.
-     * 
-     * @param requestData
-     *            the {@link PortletRequest}
-     */
-    public void onRequestEnd(PortletRequest request, PortletResponse response);
-}
\ No newline at end of file
index 3b8e7cd7ba34ba44b5efe55bce4a23dbc325c974..bf8fb5dc8433d4e58d017b46fba2a51ca46b6ad7 100644 (file)
@@ -457,7 +457,6 @@ public class VaadinPortlet extends GenericPortlet implements Constants {
                     (ResourceResponse) response);
         } else {
             Application application = null;
-            boolean requestStarted = false;
             boolean applicationRunning = false;
 
             try {
@@ -495,16 +494,6 @@ public class VaadinPortlet extends GenericPortlet implements Constants {
                 applicationContext.getBrowser().updateRequestDetails(
                         wrappedRequest);
 
-                /*
-                 * Call application requestStart before Application.init() is
-                 * called (bypasses the limitation in TransactionListener)
-                 */
-                if (application instanceof PortletRequestListener) {
-                    ((PortletRequestListener) application).onRequestStart(
-                            request, response);
-                    requestStarted = true;
-                }
-
                 /* Start the newly created application */
                 startApplication(request, application, applicationContext);
                 applicationRunning = true;
@@ -605,20 +594,11 @@ public class VaadinPortlet extends GenericPortlet implements Constants {
                     application.closeInactiveUIs();
                 }
 
-                // Notifies transaction end
-                try {
-                    if (requestStarted) {
-                        ((PortletRequestListener) application).onRequestEnd(
-                                request, response);
-
-                    }
-                } finally {
-                    CurrentInstance.clearAll();
+                CurrentInstance.clearAll();
 
-                    PortletSession session = request.getPortletSession(false);
-                    if (session != null) {
-                        requestTimer.stop(getApplicationContext(session));
-                    }
+                PortletSession session = request.getPortletSession(false);
+                if (session != null) {
+                    requestTimer.stop(getApplicationContext(session));
                 }
             }
         }
index af66a3496e11b349cc0f513bf7495870f6a9fda6..ba190725031f263200bc98b3eac41a791bcea6da 100644 (file)
@@ -286,7 +286,6 @@ public class VaadinServlet extends HttpServlet implements Constants {
         }
 
         Application application = null;
-        boolean requestStarted = false;
         boolean applicationRunning = false;
 
         try {
@@ -336,16 +335,6 @@ public class VaadinServlet extends HttpServlet implements Constants {
             /* Update browser information from the request */
             webApplicationContext.getBrowser().updateRequestDetails(request);
 
-            /*
-             * Call application requestStart before Application.init() is called
-             * (bypasses the limitation in TransactionListener)
-             */
-            if (application instanceof HttpServletRequestListener) {
-                ((HttpServletRequestListener) application).onRequestStart(
-                        request, response);
-                requestStarted = true;
-            }
-
             // Start the application if it's newly created
             startApplication(request, application, webApplicationContext);
             applicationRunning = true;
@@ -397,21 +386,12 @@ public class VaadinServlet extends HttpServlet implements Constants {
                 application.closeInactiveUIs();
             }
 
-            // Notifies transaction end
-            try {
-                if (requestStarted) {
-                    ((HttpServletRequestListener) application).onRequestEnd(
-                            request, response);
-                }
-            } finally {
-                CurrentInstance.clearAll();
+            CurrentInstance.clearAll();
 
-                HttpSession session = request.getSession(false);
-                if (session != null) {
-                    requestTimer.stop(getApplicationContext(session));
-                }
+            HttpSession session = request.getSession(false);
+            if (session != null) {
+                requestTimer.stop(getApplicationContext(session));
             }
-
         }
     }
 
index 6d2623c199277f536b8c3ed182935c197474d64a..6f21346b7db98644f7e5b7e85f44bba6e879e0f4 100644 (file)
@@ -1,10 +1,7 @@
 package com.vaadin.tests.components.window;
 
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
 import com.vaadin.event.ShortcutAction.KeyCode;
-import com.vaadin.server.HttpServletRequestListener;
+import com.vaadin.server.WrappedRequest;
 import com.vaadin.tests.components.AbstractTestCase;
 import com.vaadin.tests.util.Log;
 import com.vaadin.ui.Button;
@@ -14,9 +11,9 @@ import com.vaadin.ui.Component;
 import com.vaadin.ui.Label;
 import com.vaadin.ui.UI;
 import com.vaadin.ui.Window;
+import com.vaadin.util.CurrentInstance;
 
-public class AttachShouldBeCalledForSubWindows extends AbstractTestCase
-        implements HttpServletRequestListener {
+public class AttachShouldBeCalledForSubWindows extends AbstractTestCase {
     private static final long serialVersionUID = 1L;
 
     private Log log = new Log(20);
@@ -26,6 +23,13 @@ public class AttachShouldBeCalledForSubWindows extends AbstractTestCase
     @Override
     public void init() {
 
+        WrappedRequest request = CurrentInstance.get(WrappedRequest.class);
+        if (request.getParameter("attachMainFirst") != null) {
+            addSubWindowBeforeMainWindow = false;
+        } else {
+            addSubWindowBeforeMainWindow = true;
+        }
+
         UI.LegacyWindow mainWindow = new UI.LegacyWindow() {
             @Override
             public void attach() {
@@ -115,19 +119,4 @@ public class AttachShouldBeCalledForSubWindows extends AbstractTestCase
         return 8170;
     }
 
-    @Override
-    public void onRequestStart(HttpServletRequest request,
-            HttpServletResponse response) {
-        if (request.getParameter("attachMainFirst") != null) {
-            addSubWindowBeforeMainWindow = false;
-        }
-
-    }
-
-    @Override
-    public void onRequestEnd(HttpServletRequest request,
-            HttpServletResponse response) {
-        // TODO Auto-generated method stub
-
-    }
 }