[portal-commits] JBoss Portal SVN: r8942 - branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/server.

portal-commits at lists.jboss.org portal-commits at lists.jboss.org
Thu Nov 15 07:23:02 EST 2007


Author: julien at jboss.com
Date: 2007-11-15 07:23:02 -0500 (Thu, 15 Nov 2007)
New Revision: 8942

Modified:
   branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/server/PresentationServer.java
Log:
minor update

Modified: branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/server/PresentationServer.java
===================================================================
--- branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/server/PresentationServer.java	2007-11-15 11:54:04 UTC (rev 8941)
+++ branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/server/PresentationServer.java	2007-11-15 12:23:02 UTC (rev 8942)
@@ -22,6 +22,9 @@
  ******************************************************************************/
 package org.jboss.portal.presentation.server;
 
+import org.jboss.portal.presentation.RequestContext;
+import org.jboss.portal.presentation.model2.UIWindow;
+
 /**
  * @author <a href="mailto:sshah at redhat.com">Sohil Shah</a>
  *
@@ -32,11 +35,23 @@
     * 
     * @return
     */
-   public Processor getProcessor();
+   Processor getProcessor();
    
    /**
     * 
     * @return
     */
-   public PortalObjectReader getPortalObjectReader();
+   PortalObjectReader getPortalObjectReader();
+
+   /**
+    * Obtain the markup.
+    * 
+    * @param context the request context
+    * @param window the window to get markup for
+    * @return the markup of the window
+    * @throws Exception for now a generic exception
+    */
+   String getMarkup(RequestContext context, UIWindow window) throws Exception;
+
+
 }




More information about the portal-commits mailing list