[jboss-cvs] jboss-seam/examples/blog/src/actions ...

Gavin King gavin.king at jboss.com
Thu Sep 28 21:17:01 EDT 2006


  User: gavin   
  Date: 06/09/28 21:17:01

  Modified:    examples/blog/src/actions  EntryAction.java
  Log:
  minor
  
  Revision  Changes    Path
  1.9       +4 -3      jboss-seam/examples/blog/src/actions/EntryAction.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: EntryAction.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/blog/src/actions/EntryAction.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- EntryAction.java	30 Jun 2006 14:28:13 -0000	1.8
  +++ EntryAction.java	29 Sep 2006 01:17:01 -0000	1.9
  @@ -1,6 +1,7 @@
   package actions;
   
  -import org.jboss.seam.ScopeType;
  +import static org.jboss.seam.ScopeType.STATELESS;
  +
   import org.jboss.seam.annotations.In;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.annotations.Out;
  @@ -17,7 +18,7 @@
    * @author Gavin King
    */
   @Name("entryAction")
  - at Scope(ScopeType.STATELESS)
  + at Scope(STATELESS)
   public class EntryAction
   {
      @In(create=true) 
  @@ -26,7 +27,7 @@
      @RequestParameter("blogEntryId")
      private String id;
      
  -   @Out(scope=ScopeType.EVENT, required=false)
  +   @Out
      private BlogEntry blogEntry;
   
      
  
  
  



More information about the jboss-cvs-commits mailing list