Revision: 1095
          http://stripes.svn.sourceforge.net/stripes/?rev=1095&view=rev
Author:   bengunter
Date:     2009-03-04 16:02:26 +0000 (Wed, 04 Mar 2009)

Log Message:
-----------
Fixed STS-661: LifecycleStage enum values are out of order. RequestInit is now 
declared first.

Modified Paths:
--------------
    trunk/stripes/src/net/sourceforge/stripes/controller/LifecycleStage.java

Modified: 
trunk/stripes/src/net/sourceforge/stripes/controller/LifecycleStage.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/controller/LifecycleStage.java    
2009-03-03 16:35:57 UTC (rev 1094)
+++ trunk/stripes/src/net/sourceforge/stripes/controller/LifecycleStage.java    
2009-03-04 16:02:26 UTC (rev 1095)
@@ -24,6 +24,12 @@
  */
 public enum LifecycleStage {
     /**
+     * Executed before any processing occurs on the request. No Stripes 
processing is
+     * associated with this stage. It is simply provided as a hook for 
interceptors.
+     */
+    RequestInit,
+
+    /**
      * First major lifecycle stage.  Involves the location of the ActionBean 
class that
      * is bound to the URL being requested, and usually also the creation of a 
new instance
      * of that class.
@@ -63,12 +69,6 @@
     ResolutionExecution,
     
     /**
-     * Executed before any processing occurs on the request. No Stripes 
processing is
-     * associated with this stage. It is simply provided as a hook for 
interceptors.
-     */
-    RequestInit,
-    
-    /**
      * Final lifecycle stage. Executes in the finally block of the request so 
it will
      * always be called when a request terminates regardless of any other 
conditions.
      * This is only useful for cleaning up because Resolution execution has 
already


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to