diff --git a/plugins/portlet/src/main/java/org/apache/struts2/portlet/result/PortletActionRedirectResult.java b/plugins/portlet/src/main/java/org/apache/struts2/portlet/result/PortletActionRedirectResult.java index 902facd2f..942d92278 100644 --- a/plugins/portlet/src/main/java/org/apache/struts2/portlet/result/PortletActionRedirectResult.java +++ b/plugins/portlet/src/main/java/org/apache/struts2/portlet/result/PortletActionRedirectResult.java @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id$ * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file @@ -83,7 +83,7 @@ import com.opensymphony.xwork2.inject.Inject; * <package name="public" extends="struts-default"> * <action name="login" class="..."> * <!-- Redirect to another namespace --> - * <result type="redirect-action"> + * <result type="redirectAction"> * <param name="actionName">dashboard</param> * <param name="namespace">/secure</param> * </result> @@ -94,7 +94,7 @@ import com.opensymphony.xwork2.inject.Inject; * <-- Redirect to an action in the same namespace --> * <action name="dashboard" class="..."> * <result>dashboard.jsp</result> - * <result name="error" type="redirect-action">error</result> + * <result name="error" type="redirectAction">error</result> * </action> * * <action name="error" class="..."> @@ -105,11 +105,11 @@ import com.opensymphony.xwork2.inject.Inject; * <package name="passingRequestParameters" extends="struts-default" namespace="/passingRequestParameters"> * <-- Pass parameters (reportType, width and height) --> * <!-- - * The redirect-action url generated will be : + * The redirectAction url generated will be : * /genReport/generateReport.action?reportType=pie&width=100&height=100 * --> * <action name="gatherReportInfo" class="..."> - * <result name="showReportResult" type="redirect-action"> + * <result name="showReportResult" type="redirectAction"> * <param name="actionName">generateReport</param> * <param name="namespace">/genReport</param> * <param name="reportType">pie</param>