[jboss-cvs] jboss-seam/src/main/org/jboss/seam/core ...

Gavin King gavin.king at jboss.com
Wed Jul 12 20:59:43 EDT 2006


  User: gavin   
  Date: 06/07/12 20:59:43

  Modified:    src/main/org/jboss/seam/core  Conversation.java
  Log:
  control flushing from @Begin
  
  Revision  Changes    Path
  1.20      +12 -0     jboss-seam/src/main/org/jboss/seam/core/Conversation.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Conversation.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Conversation.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -b -r1.19 -r1.20
  --- Conversation.java	12 Jul 2006 20:44:59 -0000	1.19
  +++ Conversation.java	13 Jul 2006 00:59:43 -0000	1.20
  @@ -8,6 +8,7 @@
   import org.jboss.seam.Component;
   import org.jboss.seam.ScopeType;
   import org.jboss.seam.Seam;
  +import org.jboss.seam.annotations.FlushModeType;
   import org.jboss.seam.annotations.Intercept;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.annotations.Scope;
  @@ -28,6 +29,7 @@
   public class Conversation implements Serializable {
      
      private Integer timeout;
  +   private FlushModeType flushMode = FlushModeType.AUTO;
      String description;
      String viewId;
   
  @@ -277,4 +279,14 @@
         return redirect();
      }
      
  +   public FlushModeType getFlushMode()
  +   {
  +      return flushMode;
  +   }
  +
  +   public void setFlushMode(FlushModeType flushMode)
  +   {
  +      this.flushMode = flushMode;
  +   }
  +   
   }
  
  
  



More information about the jboss-cvs-commits mailing list