From: Julien V. <ju...@jb...> - 2006-07-09 12:04:16
|
User: julien Date: 06/07/09 08:04:14 Modified: core/src/main/org/jboss/portal/core/command/portlet CoreActionContext.java CoreInvocationContext.java CoreRenderContext.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.12 +3 -3 jboss-portal/core/src/main/org/jboss/portal/core/command/portlet/CoreActionContext.java (In the diff below, changes in quantity of whitespace are not shown.) Index: CoreActionContext.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/core/src/main/org/jboss/portal/core/command/portlet/CoreActionContext.java,v retrieving revision 1.11 retrieving revision 1.12 diff -u -b -r1.11 -r1.12 --- CoreActionContext.java 7 May 2006 13:57:06 -0000 1.11 +++ CoreActionContext.java 9 Jul 2006 12:04:14 -0000 1.12 @@ -30,8 +30,8 @@ import org.jboss.portal.portlet.invocation.ActionInvocation; import org.jboss.portal.server.ServerInvocation; import org.jboss.portal.server.util.Parameters; -import org.jboss.portal.WindowState; -import org.jboss.portal.Mode; +import org.jboss.portal.portlet.WindowState; +import org.jboss.portal.portlet.Mode; import javax.servlet.http.HttpServletRequest; import java.io.BufferedReader; @@ -40,7 +40,7 @@ /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.11 $ + * @version $Revision: 1.12 $ */ public class CoreActionContext extends CoreInvocationContext implements ActionContext { 1.23 +3 -3 jboss-portal/core/src/main/org/jboss/portal/core/command/portlet/CoreInvocationContext.java (In the diff below, changes in quantity of whitespace are not shown.) Index: CoreInvocationContext.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/core/src/main/org/jboss/portal/core/command/portlet/CoreInvocationContext.java,v retrieving revision 1.22 retrieving revision 1.23 diff -u -b -r1.22 -r1.23 --- CoreInvocationContext.java 4 Jul 2006 10:07:50 -0000 1.22 +++ CoreInvocationContext.java 9 Jul 2006 12:04:14 -0000 1.23 @@ -48,16 +48,16 @@ import org.jboss.portal.portlet.PortletURL; import org.jboss.portal.portlet.ActionURL; import org.jboss.portal.portlet.RenderURL; +import org.jboss.portal.portlet.Mode; import org.jboss.portal.server.util.HTTPStreamInfo; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.WindowState; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.22 $ + * @version $Revision: 1.23 $ */ public abstract class CoreInvocationContext extends AbstractInvocationContext implements InvocationContext { 1.10 +3 -3 jboss-portal/core/src/main/org/jboss/portal/core/command/portlet/CoreRenderContext.java (In the diff below, changes in quantity of whitespace are not shown.) Index: CoreRenderContext.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/core/src/main/org/jboss/portal/core/command/portlet/CoreRenderContext.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -b -r1.9 -r1.10 --- CoreRenderContext.java 7 May 2006 13:57:07 -0000 1.9 +++ CoreRenderContext.java 9 Jul 2006 12:04:14 -0000 1.10 @@ -26,15 +26,15 @@ import org.jboss.portal.core.model.portal.Window; import org.jboss.portal.portlet.spi.RenderContext; import org.jboss.portal.portlet.StateString; +import org.jboss.portal.portlet.Mode; import org.jboss.portal.portlet.invocation.PortletInvocation; import org.jboss.portal.portlet.invocation.RenderInvocation; import org.jboss.portal.server.ServerInvocation; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.WindowState; /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.9 $ + * @version $Revision: 1.10 $ */ public class CoreRenderContext extends CoreInvocationContext implements RenderContext { |