You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by dd...@apache.org on 2004/10/25 15:29:05 UTC

svn commit: rev 55497 - portals/pluto/branches/pluto-1.1/portal/src/java/org/apache/pluto/driver

Author: ddewolf
Date: Mon Oct 25 06:29:04 2004
New Revision: 55497

Modified:
   portals/pluto/branches/pluto-1.1/portal/src/java/org/apache/pluto/driver/PortalDriverServlet.java
Log:
preparing for TCKServlet enhancements:
-- fixing doPost bug
-- increasing field visibility.

Modified: portals/pluto/branches/pluto-1.1/portal/src/java/org/apache/pluto/driver/PortalDriverServlet.java
==============================================================================
--- portals/pluto/branches/pluto-1.1/portal/src/java/org/apache/pluto/driver/PortalDriverServlet.java	(original)
+++ portals/pluto/branches/pluto-1.1/portal/src/java/org/apache/pluto/driver/PortalDriverServlet.java	Mon Oct 25 06:29:04 2004
@@ -53,12 +53,12 @@
     /**
      * The portlet container to which we will forward all portlet requests.
      */
-    private PortletContainer container;
+    protected PortletContainer container;
 
     /**
      * The driver configuration defining our configuraiton.
      */
-    private DriverConfiguration driverConfig;
+    protected DriverConfiguration driverConfig;
 
     /**
      * Initialize the Portal Driver. Initialization completes the following
@@ -137,7 +137,7 @@
     public void doPost(HttpServletRequest req,
                        HttpServletResponse res)
     throws ServletException, IOException {
-        doPost(req, res);
+        doGet(req, res);
     }
 }