Author: julien(a)jboss.com
Date: 2008-02-27 19:18:59 -0500 (Wed, 27 Feb 2008)
New Revision: 10147
Modified:
modules/portlet/trunk/controller/src/main/java/org/jboss/portal/portlet/controller/impl/request/ControllerRequestParameterNames.java
Log:
minor upate to controller request parameter names
Modified:
modules/portlet/trunk/controller/src/main/java/org/jboss/portal/portlet/controller/impl/request/ControllerRequestParameterNames.java
===================================================================
---
modules/portlet/trunk/controller/src/main/java/org/jboss/portal/portlet/controller/impl/request/ControllerRequestParameterNames.java 2008-02-28
00:17:07 UTC (rev 10146)
+++
modules/portlet/trunk/controller/src/main/java/org/jboss/portal/portlet/controller/impl/request/ControllerRequestParameterNames.java 2008-02-28
00:18:59 UTC (rev 10147)
@@ -32,31 +32,44 @@
* The life cycle type of the invocation. The values accepted are
<code>ACTION_LIFECYCLE</code>,
* <code>RENDER_LIFECYCLE</code> and
<code>RESOURCE_LIFECYCLE</code>.
*/
- public static final String LIFECYCLE_PHASE = "lifecycle";
+ public static final String LIFECYCLE_PHASE = "phase";
+
/** The window id. */
public static final String WINDOW_ID = "windowid";
+
/** The portlet mode. */
public static final String MODE = "mode";
+
/** The window state. */
public static final String WINDOW_STATE = "windowstate";
+
/** The portlet navigational state for any type of lifecycle. */
public static final String NAVIGATIONAL_STATE = "navigationalstate";
+
/** The portlet resource state for lifecycle of type
<code>RENDER_LIFECYCLE</code>. */
public static final String RESOURCE_STATE = "resourcestate";
+
/** The portlet interaction state for lifecycle of type
<code>ACTION_LIFECYCLE</code>. */
public static final String INTERACTION_STATE = "interactionstate";
+
/** The page state for any kind of lifecycle. */
- public static final String PAGE_NAVIGATIONAL_STATE =
"pageNavigationalState";
+ public static final String PAGE_NAVIGATIONAL_STATE =
"pagenavigationalstate";
+
/** The public navigational state changes of a portlet for lifecycle of type
<code>RENDER_LIFECYCLE</code>. */
public static final String PUBLIC_NAVIGATIONAL_STATE_CHANGES =
"publicnavigationalstatechanges";
+
/** The resource id for lifecycle of type <code>RESOURCE_LIFECYCLE</code>.
*/
public static final String RESOURCE_ID = "resourceid";
- /** The resource cacheability for lifecycle of type
<code>RENDER_LIFECYCLE</code>. */
+
+ /** The resource cacheability for lifecycle of type
<code>RESOURCE_LIFECYCLE</code>. */
public static final String RESOURCE_CACHEABILITY = "resourcecacheability";
+
/** Denotes an action lifecycle operation. */
public static final String ACTION_PHASE = "action";
+
/** Denotes a render lifecycle operation. */
public static final String RENDER_PHASE = "render";
+
/** Denotes a resource lifecycle operation. */
public static final String RESOURCE_PHASE = "resource";
}