taylor 2004/10/28 18:24:53
Modified: applications/demo/src/java/org/apache/jetspeed/demo/simple
AttributeScopeServlet.java
applications/pam/src/java/org/apache/jetspeed/portlets/security
UserDetailsPortlet.java
applications/demo/src/java/org/apache/jetspeed/demo/customerInfo
CustomerPortlet.java
Log:
found a few old signatures on the processAction
Revision Changes Path
1.4 +4 -3
jakarta-jetspeed-2/applications/demo/src/java/org/apache/jetspeed/demo/simple/AttributeScopeServlet.java
Index: AttributeScopeServlet.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed-2/applications/demo/src/java/org/apache/jetspeed/demo/simple/AttributeScopeServlet.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- AttributeScopeServlet.java 6 Oct 2004 23:45:05 -0000 1.3
+++ AttributeScopeServlet.java 29 Oct 2004 01:24:53 -0000 1.4
@@ -16,9 +16,10 @@
package org.apache.jetspeed.demo.simple;
import java.io.IOException;
+
+import javax.portlet.ActionRequest;
import javax.portlet.ActionResponse;
import javax.portlet.PortletException;
-import javax.portlet.PortletRequest;
import javax.portlet.PortletSession;
import org.apache.portals.bridges.common.GenericServletPortlet;
@@ -92,7 +93,7 @@
* @see javax.portlet.GenericPortlet#processAction
*
*/
- public void processAction(PortletRequest request, ActionResponse actionResponse)
+ public void processAction(ActionRequest request, ActionResponse actionResponse)
throws PortletException, IOException
{
PortletSession session = request.getPortletSession();
1.11 +1 -4
jakarta-jetspeed-2/applications/pam/src/java/org/apache/jetspeed/portlets/security/UserDetailsPortlet.java
Index: UserDetailsPortlet.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed-2/applications/pam/src/java/org/apache/jetspeed/portlets/security/UserDetailsPortlet.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- UserDetailsPortlet.java 21 Oct 2004 18:43:07 -0000 1.10
+++ UserDetailsPortlet.java 29 Oct 2004 01:24:53 -0000 1.11
@@ -37,11 +37,8 @@
import org.apache.jetspeed.portlets.pam.beans.TabBean;
import org.apache.jetspeed.portlets.security.users.JetspeedUserBean;
import org.apache.jetspeed.portlets.security.users.JetspeedUserBean.StringAttribute;
-import org.apache.jetspeed.profiler.ProfileLocator;
import org.apache.jetspeed.profiler.Profiler;
-import org.apache.jetspeed.profiler.ProfilerException;
import org.apache.jetspeed.profiler.rules.PrincipalRule;
-import org.apache.jetspeed.profiler.rules.ProfilingRule;
import org.apache.jetspeed.security.GroupManager;
import org.apache.jetspeed.security.RoleManager;
import org.apache.jetspeed.security.User;
1.5 +4 -2
jakarta-jetspeed-2/applications/demo/src/java/org/apache/jetspeed/demo/customerInfo/CustomerPortlet.java
Index: CustomerPortlet.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed-2/applications/demo/src/java/org/apache/jetspeed/demo/customerInfo/CustomerPortlet.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- CustomerPortlet.java 6 Oct 2004 23:45:05 -0000 1.4
+++ CustomerPortlet.java 29 Oct 2004 01:24:53 -0000 1.5
@@ -19,6 +19,8 @@
import java.util.ArrayList;
import java.util.GregorianCalendar;
import java.util.List;
+
+import javax.portlet.ActionRequest;
import javax.portlet.ActionResponse;
import javax.portlet.PortletException;
import javax.portlet.PortletSession;
@@ -119,7 +121,7 @@
* in the session.
*
*/
- public void processAction(RenderRequest request, ActionResponse actionResponse)
throws PortletException, IOException
+ public void processAction(ActionRequest request, ActionResponse actionResponse)
throws PortletException, IOException
{
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]