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 2005/11/02 04:51:54 UTC

svn commit: r330181 - /portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/OptionalPortletContainerServices.java

Author: ddewolf
Date: Tue Nov  1 19:51:52 2005
New Revision: 330181

URL: http://svn.apache.org/viewcvs?rev=330181&view=rev
Log:
Refactoring to ensure that all embedding/integration points exist within the root package; removing old services never discarded

Added:
    portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/OptionalPortletContainerServices.java

Added: portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/OptionalPortletContainerServices.java
URL: http://svn.apache.org/viewcvs/portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/OptionalPortletContainerServices.java?rev=330181&view=auto
==============================================================================
--- portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/OptionalPortletContainerServices.java (added)
+++ portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/OptionalPortletContainerServices.java Tue Nov  1 19:51:52 2005
@@ -0,0 +1,17 @@
+package org.apache.pluto;
+
+import org.apache.pluto.services.PortletPreferencesService;
+
+import javax.portlet.PortalContext;
+import javax.servlet.http.HttpServletRequest;
+
+/**
+ * Defines the services necessary for integration between the Pluto Container
+ * and a Portal.
+ * @author <a href="ddewolf@apache.org">David H. DeWolf</a>
+ */
+public interface OptionalPortletContainerServices {
+
+    PortletPreferencesService getPortletPreferencesService();
+
+}