You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by hr...@apache.org on 2005/06/04 16:58:48 UTC

svn commit: r179995 - /struts/core/trunk/src/share/org/apache/struts/chain/commands /struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet /struts/core/trunk/src/share/org/apache/struts/chain/commands/util /struts/core/trunk/src/share/org/apache/struts/chain/contexts

Author: hrabago
Date: Sat Jun  4 07:58:46 2005
New Revision: 179995

URL: http://svn.apache.org/viewcvs?rev=179995&view=rev
Log:
Removed @author tags.
Fix incorrect "context" javadoc reference.

Modified:
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractAuthorizeAction.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractCreateAction.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractCreateActionForm.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractExceptionHandler.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractExecuteAction.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPerformForward.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPerformInclude.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPopulateActionForm.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractRequestNoCache.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectAction.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectForward.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectInput.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectLocale.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectModule.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSetContentType.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractValidateActionForm.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/CreateActionForm.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/ExceptionCatcher.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/ExecuteCommand.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/SelectInclude.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/UnauthorizedActionException.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/SelectModule.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/SetContentType.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/ValidateActionForm.java
    struts/core/trunk/src/share/org/apache/struts/chain/commands/util/ClassUtils.java
    struts/core/trunk/src/share/org/apache/struts/chain/contexts/ActionContextBase.java

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractAuthorizeAction.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractAuthorizeAction.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractAuthorizeAction.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractAuthorizeAction.java Sat Jun  4 07:58:46 2005
@@ -28,7 +28,6 @@
  * user.  If not, abort chain processing and perferably, return an error
  * message of some kind.</p>
  *
- * @author Don Brown
  * @version $Rev$ $Date$
  */
 
@@ -48,7 +47,7 @@
      * user.  If not, abort chain processing and perferably, return an error
      * message of some kind.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> if the user is authorized for the selected
      * action, else <code>true</code> to abort processing.

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractCreateAction.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractCreateAction.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractCreateAction.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractCreateAction.java Sat Jun  4 07:58:46 2005
@@ -28,7 +28,6 @@
  * <p>Create (if necessary) and cache an <code>Action</code> for this request.
  * </p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 
@@ -45,7 +44,7 @@
      * <p>Create (if necessary) and cache an <code>Action</code> for this
      * request.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractCreateActionForm.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractCreateActionForm.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractCreateActionForm.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractCreateActionForm.java Sat Jun  4 07:58:46 2005
@@ -30,7 +30,6 @@
 /**
  * <p>Create (if necessary) and cache a form bean for this request.</p>
  *
- * @author Craig R. McClanahan
  * @version $Id$
  * @deprecated This class no longer needs to be abstract.  Use
  * <code>org.apache.struts.chain.commands.CreateActionForm</code> instead.
@@ -52,7 +51,7 @@
     /**
      * <p>Create (if necessary) and cache a form bean for this request.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractExceptionHandler.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractExceptionHandler.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractExceptionHandler.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractExceptionHandler.java Sat Jun  4 07:58:46 2005
@@ -30,7 +30,6 @@
  * <p>Invoke the local or global exception handler configured for the
  * exception class that occurred.</p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 
@@ -52,7 +51,7 @@
      * <p>Invoke the appropriate <code>Action</code> for this request, and cache
      * the returned <code>ActionForward</code>.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @exception InvalidPathException if no valid
      *  action can be identified for this request

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractExecuteAction.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractExecuteAction.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractExecuteAction.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractExecuteAction.java Sat Jun  4 07:58:46 2005
@@ -28,7 +28,6 @@
  * <p>Invoke the appropriate <code>Action</code> for this request, and cache
  * the returned <code>ActionForward</code>.</p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 
@@ -42,7 +41,7 @@
      * <p>Invoke the appropriate <code>Action</code> for this request, and cache
      * the returned <code>ActionForward</code>.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @exception InvalidPathException if no valid
      *  action can be identified for this request

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPerformForward.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPerformForward.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPerformForward.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPerformForward.java Sat Jun  4 07:58:46 2005
@@ -25,7 +25,6 @@
  * <p>Perform forwarding or redirection based on the specified
  * <code>ForwardConfig</code> (if any).</p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 
@@ -41,7 +40,7 @@
      * <p>Perform forwarding or redirection based on the specified
      * <code>ActionForward</code> (if any).</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>true</code> so that processing completes
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPerformInclude.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPerformInclude.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPerformInclude.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPerformInclude.java Sat Jun  4 07:58:46 2005
@@ -25,7 +25,6 @@
  * <p>Perform forwarding or redirection based on the specified
  * <code>String</code> (if any).</p>
  *
- * @author Don Brown
  * @version $Rev$ $Date$
  */
 
@@ -38,7 +37,7 @@
      * <p>Perform an include based on the specified
      * include uri (if any).</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>true</code> so that processing completes
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPopulateActionForm.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPopulateActionForm.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPopulateActionForm.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractPopulateActionForm.java Sat Jun  4 07:58:46 2005
@@ -28,7 +28,6 @@
 /**
  * <p>Populate the form bean (if any) for this request.</p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 
@@ -41,7 +40,7 @@
     /**
      * <p>Populate the form bean (if any) for this request.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractRequestNoCache.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractRequestNoCache.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractRequestNoCache.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractRequestNoCache.java Sat Jun  4 07:58:46 2005
@@ -25,7 +25,6 @@
  * <p>Check to see if the controller is configured to prevent caching,
  * and if so, request no cache flags to be set.</p>
  *
- * @author Don Brown
  * @version $Rev$ $Date$
  */
 
@@ -39,7 +38,7 @@
      * <p>Check to see if the controller is configured to prevent caching,
      * and if so, request no cache flags to be set.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectAction.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectAction.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectAction.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectAction.java Sat Jun  4 07:58:46 2005
@@ -26,7 +26,6 @@
  * <p>Cache the <code>ActionConfig</code> instance for the
  * action to be used for processing this request.</p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 
@@ -42,7 +41,7 @@
      * <p>Cache the <code>ActionConfig</code> instance for the
      * action to be used for processing this request.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @exception IllegalArgumentException if no valid
      *  action can be identified for this request

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectForward.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectForward.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectForward.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectForward.java Sat Jun  4 07:58:46 2005
@@ -29,7 +29,6 @@
  * <p>Select and cache the <code>ActionForward</code> for this
  * <code>ActionConfig</code> if specified.</p>
  *
- * @author Don Brown
  * @version $Rev$ $Date$
  */
 
@@ -48,7 +47,7 @@
      * <p>Select and cache the <code>ActionForward</code> for this
      * <code>ActionConfig</code> if specified.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectInput.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectInput.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectInput.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectInput.java Sat Jun  4 07:58:46 2005
@@ -29,7 +29,6 @@
  * <p>Select and cache a <code>ForwardConfig</code> that returns us to the
  * input page for the current action, if any.</p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 
@@ -48,7 +47,7 @@
      * <p>Select and cache a <code>ForwardConfig</code> for the input page
      * for the current request.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectLocale.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectLocale.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectLocale.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectLocale.java Sat Jun  4 07:58:46 2005
@@ -28,7 +28,6 @@
 /**
  * <p>Select the <code>Locale</code> to be used for this request.</p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 
@@ -42,7 +41,7 @@
     /**
      * <p>Select the <code>Locale</code> to be used for this request.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectModule.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectModule.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectModule.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSelectModule.java Sat Jun  4 07:58:46 2005
@@ -29,7 +29,6 @@
  * instances for the sub-application module to be used for processing
  * this request.</p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 
@@ -52,7 +51,7 @@
      * instances for the sub-application module to be used for processing
      * this request.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @exception IllegalArgumentException if no valid
      *  ModuleConfig or MessageResources can be identified for this request

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSetContentType.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSetContentType.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSetContentType.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractSetContentType.java Sat Jun  4 07:58:46 2005
@@ -25,7 +25,6 @@
  * <p>Check to see if the content type is set, and if so, set it for this
  * response.</p>
  *
- * @author Don Brown
  * @version $Rev$ $Date$
  */
 
@@ -39,7 +38,7 @@
      * <p>Check to see if the content type is set, and if so, set it for this
      * response.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractValidateActionForm.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractValidateActionForm.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractValidateActionForm.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/AbstractValidateActionForm.java Sat Jun  4 07:58:46 2005
@@ -30,7 +30,6 @@
  * any validation errors, execute the specified command; otherwise,
  * proceed normally.</p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 
@@ -49,7 +48,7 @@
      * there are any validation errors, execute the child commands in our
      * chain; otherwise, proceed normally.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues, if there are
      *  no validation errors; otherwise <code>true</code>

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/CreateActionForm.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/CreateActionForm.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/CreateActionForm.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/CreateActionForm.java Sat Jun  4 07:58:46 2005
@@ -48,7 +48,7 @@
     /**
      * <p>Create (if necessary) and cache a form bean for this request.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/ExceptionCatcher.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/ExceptionCatcher.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/ExceptionCatcher.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/ExceptionCatcher.java Sat Jun  4 07:58:46 2005
@@ -34,7 +34,6 @@
  * after storing the exception that has occurred into the <code>Context</code>.
  * </p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 
@@ -110,7 +109,7 @@
      * <p>Clear any existing stored exception and pass the <code>context</code>
      * on to the remainder of the current chain.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/ExecuteCommand.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/ExecuteCommand.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/ExecuteCommand.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/ExecuteCommand.java Sat Jun  4 07:58:46 2005
@@ -49,7 +49,7 @@
     /**
      * <p>If the <code>context</code> is "valid", lookup a command and execute it.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return the result of the lookup command's <code>execute</code> method, if executed,
      * or <code>false</code> if it was not executed.
@@ -112,8 +112,8 @@
      */
     protected Command getCommand(String commandName, String catalogName) {
 
-        if (commandName == null) {
-            return null;
+        if (commandName == null) {
+            return null;
         }
 
         Command command = null;

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/SelectInclude.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/SelectInclude.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/SelectInclude.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/SelectInclude.java Sat Jun  4 07:58:46 2005
@@ -27,7 +27,6 @@
  * <p>Select and cache the include for this
  * <code>ActionConfig</code> if specified.</p>
  *
- * @author Don Brown
  * @version $Rev$ $Date$
  */
 
@@ -47,7 +46,7 @@
      * <p>Select and cache the include uri for this
      * <code>ActionConfig</code> if specified.</p>
      *
-     * @param context The <code>Context</code> for the current request
+     * @param actionCtx The <code>Context</code> for the current request
      *
      * @return <code>false</code> so that processing continues
      */

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/UnauthorizedActionException.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/UnauthorizedActionException.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/UnauthorizedActionException.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/UnauthorizedActionException.java Sat Jun  4 07:58:46 2005
@@ -19,7 +19,6 @@
  *  <p>Exception thrown when the chosen action mapping is not authorized
  *  for the current request.</p>
  *
- *@author     Don Brown
  *@version    $Rev$ $Date$
  */
 

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/SelectModule.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/SelectModule.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/SelectModule.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/SelectModule.java Sat Jun  4 07:58:46 2005
@@ -31,7 +31,6 @@
  * instances for the sub-application module to be used for processing
  * this request.</p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/SetContentType.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/SetContentType.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/SetContentType.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/SetContentType.java Sat Jun  4 07:58:46 2005
@@ -28,7 +28,6 @@
  * <p>Check to see if the content type is set, and if so, set it for this
  * response.</p>
  *
- * @author Don Brown
  * @version $Rev$ $Date$
  */
 

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/ValidateActionForm.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/ValidateActionForm.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/ValidateActionForm.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/servlet/ValidateActionForm.java Sat Jun  4 07:58:46 2005
@@ -34,8 +34,6 @@
  * proceed normally.  Also, if any errors are found and the request is a
  * multipart request, rollback the <code>MultipartRequestHandler</code>.</p>
  *
- * @author Craig R. McClanahan
- * @author Don Brown
  * @version $Rev$ $Date$
  */
 

Modified: struts/core/trunk/src/share/org/apache/struts/chain/commands/util/ClassUtils.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/commands/util/ClassUtils.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/commands/util/ClassUtils.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/commands/util/ClassUtils.java Sat Jun  4 07:58:46 2005
@@ -19,7 +19,6 @@
 /**
  * <p>Utility methods to load application classes and create instances.</p>
  *
- * @author Craig R. McClanahan
  * @version $Rev$ $Date$
  */
 

Modified: struts/core/trunk/src/share/org/apache/struts/chain/contexts/ActionContextBase.java
URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/chain/contexts/ActionContextBase.java?rev=179995&r1=179994&r2=179995&view=diff
==============================================================================
--- struts/core/trunk/src/share/org/apache/struts/chain/contexts/ActionContextBase.java (original)
+++ struts/core/trunk/src/share/org/apache/struts/chain/contexts/ActionContextBase.java Sat Jun  4 07:58:46 2005
@@ -41,7 +41,6 @@
  * <p>Description: The core of the Struts framework is a flexible control layer based on standard technologies like Java Servlets, JavaBeans, ResourceBundles, and Extensible Markup Language (XML), as well as various Jakarta Commons packages. Struts encourages application architectures based on the Model 2 approach, a variation of the classic Model-View-Controller (MVC) design paradigm. Struts provides its own Controller component and integrates with other technologies to provide the Model and the View. For the Model, Struts can interact with any standard data access technology, including Enterprise Java Beans, JDBC, and Object Relational Bridge. For the View, Struts works well with JavaServer Pages, including JSTL and JSF, as well as Velocity Templates, XSLT, and other presentation systems. The Struts framework provides the invisible underpinnings every professional web application needs to survive. Struts helps you create an extensible development environment for your application, based on published standards and proven design patterns.</p>
  * <p>Copyright: Copyright (c) 2000-2004 The Apache Software Foundation - All Rights Reserved.</p>
  * <p>Company: The Apache Software Foundation</p>
- * @author germuska
  * @version 1.2.5
  */
 
@@ -107,14 +106,14 @@
     public abstract Map getSessionScope();
 
     public Map getScope(String scopeName) {
-        if (REQUEST_SCOPE.equals(scopeName)) {
-            return this.getRequestScope();
+        if (REQUEST_SCOPE.equals(scopeName)) {
+            return this.getRequestScope();
         }
-        if (SESSION_SCOPE.equals(scopeName)) {
-            return this.getSessionScope();
+        if (SESSION_SCOPE.equals(scopeName)) {
+            return this.getSessionScope();
         }
-        if (APPLICATION_SCOPE.equals(scopeName)) {
-            return this.getApplicationScope();
+        if (APPLICATION_SCOPE.equals(scopeName)) {
+            return this.getApplicationScope();
         }
         throw new IllegalArgumentException("Invalid scope: " + scopeName);
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org