[portal-commits] JBoss Portal SVN: r8909 - in branches/UIServer: uiserver/src/main/org/jboss/portal/presentation/impl/ajax/service and 3 other directories.

portal-commits at lists.jboss.org portal-commits at lists.jboss.org
Tue Nov 13 12:36:35 EST 2007


Author: sohil.shah at jboss.com
Date: 2007-11-13 12:36:35 -0500 (Tue, 13 Nov 2007)
New Revision: 8909

Removed:
   branches/UIServer/uiserver/src/main/org/jboss/portal/uiserver/service/
Modified:
   branches/UIServer/core/src/main/org/jboss/portal/core/theme/PageRendition.java
   branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/impl/ajax/service/PortalEntryPoint.java
   branches/UIServer/uiserver/src/resources/portal-uiserver.sar/META-INF/jboss-service.xml
   branches/UIServer/uiserver/src/resources/portal-uiserver.war/WEB-INF/web.xml
Log:
refactoring

Modified: branches/UIServer/core/src/main/org/jboss/portal/core/theme/PageRendition.java
===================================================================
--- branches/UIServer/core/src/main/org/jboss/portal/core/theme/PageRendition.java	2007-11-13 17:25:35 UTC (rev 8908)
+++ branches/UIServer/core/src/main/org/jboss/portal/core/theme/PageRendition.java	2007-11-13 17:36:35 UTC (rev 8909)
@@ -43,7 +43,7 @@
 import java.util.List;
 import java.util.ArrayList;
 
-//import org.jboss.portal.uiserver.service.UIServer;
+//import org.jboss.portal.presentation.service.UIServer;
 
 /**
  * Should not be a controller response, but it comes from legacy design.

Modified: branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/impl/ajax/service/PortalEntryPoint.java
===================================================================
--- branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/impl/ajax/service/PortalEntryPoint.java	2007-11-13 17:25:35 UTC (rev 8908)
+++ branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/impl/ajax/service/PortalEntryPoint.java	2007-11-13 17:36:35 UTC (rev 8909)
@@ -33,7 +33,7 @@
 import org.jboss.portal.uiserver.ajax.client.protocol.Page;
 import org.jboss.portal.uiserver.ajax.client.protocol.Window;
 import org.jboss.portal.presentation.server.ProcessorResponse;
-import org.jboss.portal.uiserver.service.EntryPoint;
+import org.jboss.portal.presentation.service.EntryPoint;
 
 import com.google.gwt.user.client.rpc.SerializationException;
 import com.google.gwt.user.server.rpc.RemoteServiceServlet;

Modified: branches/UIServer/uiserver/src/resources/portal-uiserver.sar/META-INF/jboss-service.xml
===================================================================
--- branches/UIServer/uiserver/src/resources/portal-uiserver.sar/META-INF/jboss-service.xml	2007-11-13 17:25:35 UTC (rev 8908)
+++ branches/UIServer/uiserver/src/resources/portal-uiserver.sar/META-INF/jboss-service.xml	2007-11-13 17:36:35 UTC (rev 8909)
@@ -24,7 +24,7 @@
 
 <server>
   <mbean
-      code="org.jboss.portal.uiserver.service.UIServer"
+      code="org.jboss.portal.presentation.service.UIServer"
       name="portal:service=Controller"
       xmbean-dd=""
       xmbean-code="org.jboss.portal.jems.as.system.JBossServiceModelMBean">
@@ -32,7 +32,7 @@
       <depends optional-attribute-name="PresentationServer" proxy-type="attribute">portal:service=PresentationServer</depends>      
   </mbean>
   <mbean
-      code="org.jboss.portal.uiserver.service.EntryPointImpl"
+      code="org.jboss.portal.presentation.service.EntryPointImpl"
       name="portal:service=EntryPoint"
       xmbean-dd=""
       xmbean-code="org.jboss.portal.jems.as.system.JBossServiceModelMBean">

Modified: branches/UIServer/uiserver/src/resources/portal-uiserver.war/WEB-INF/web.xml
===================================================================
--- branches/UIServer/uiserver/src/resources/portal-uiserver.war/WEB-INF/web.xml	2007-11-13 17:25:35 UTC (rev 8908)
+++ branches/UIServer/uiserver/src/resources/portal-uiserver.war/WEB-INF/web.xml	2007-11-13 17:36:35 UTC (rev 8909)
@@ -29,7 +29,7 @@
    <!-- Add the GWT Client Filter to run the Portal in full Web 2.0 Ajax Mode. In turn, to run in Classic Html Mode, turn this filter off -->
    <filter>
    		<filter-name>GWTClientFilter</filter-name>
-   		<filter-class>org.jboss.portal.uiserver.service.GWTClientFilter</filter-class>
+   		<filter-class>org.jboss.portal.presentation.service.GWTClientFilter</filter-class>
    </filter>    
    <filter-mapping>
    		<filter-name>GWTClientFilter</filter-name>
@@ -40,7 +40,7 @@
    <!-- The portal servlet is the main entrance point -->
    <servlet>
       <servlet-name>PortalEntryPoint</servlet-name>
-      <servlet-class>org.jboss.portal.uiserver.service.PortalEntryPoint</servlet-class>
+      <servlet-class>org.jboss.portal.presentation.service.PortalEntryPoint</servlet-class>
       <init-param>
          <param-name>asDefaultServlet</param-name>
          <param-value>false</param-value>




More information about the portal-commits mailing list