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 dj...@apache.org on 2009/12/03 09:06:46 UTC

svn commit: r886695 - /portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java

Author: djencks
Date: Thu Dec  3 08:06:40 2009
New Revision: 886695

URL: http://svn.apache.org/viewvc?rev=886695&view=rev
Log:
PLUTO-387. Remove page functionality got lost on way to 2.0?

Modified:
    portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java

Modified: portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java?rev=886695&r1=886694&r2=886695&view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java (original)
+++ portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java Thu Dec  3 08:06:40 2009
@@ -28,7 +28,8 @@
  */
 public interface RenderConfigAdminService {
 
-    public void addPage(PageConfig config)
-        throws DriverConfigurationException;
+    void addPage(PageConfig config) throws DriverConfigurationException;
 
+    void removePage(PageConfig pageConfig) throws DriverConfigurationException;
+    
 }