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

Michael Yuan michael.yuan at jboss.com
Fri Aug 24 15:54:55 EDT 2007


  User: myuan   
  Date: 07/08/24 15:54:55

  Modified:    src/main/org/jboss/seam/async  QuartzDispatcher.java
  Log:
  Need @Startup to start Quartz when the app starts
  
  Revision  Changes    Path
  1.8       +2 -0      jboss-seam/src/main/org/jboss/seam/async/QuartzDispatcher.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: QuartzDispatcher.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/async/QuartzDispatcher.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- QuartzDispatcher.java	24 Aug 2007 16:57:09 -0000	1.7
  +++ QuartzDispatcher.java	24 Aug 2007 19:54:55 -0000	1.8
  @@ -13,6 +13,7 @@
   import org.jboss.seam.annotations.Install;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.annotations.Scope;
  +import org.jboss.seam.annotations.Startup;
   import org.jboss.seam.annotations.intercept.BypassInterceptors;
   import org.jboss.seam.intercept.InvocationContext;
   import org.jboss.seam.log.LogProvider;
  @@ -36,6 +37,7 @@
    * @author Michael Yuan
    *
    */
  + at Startup
   @Scope(ScopeType.APPLICATION)
   @Name("org.jboss.seam.async.dispatcher")
   @Install(value=false, precedence=BUILT_IN)
  
  
  



More information about the jboss-cvs-commits mailing list