[jboss-cvs] jboss-seam/examples/quartz/src/org/jboss/seam/example/quartz ...

Peter Muir peter at bleepbleep.org.uk
Mon Oct 15 09:32:15 EDT 2007


  User: pmuir   
  Date: 07/10/15 09:32:15

  Modified:    examples/quartz/src/org/jboss/seam/example/quartz 
                        Payment.java
  Log:
  Tests for quartz example
  
  Revision  Changes    Path
  1.6       +2 -2      jboss-seam/examples/quartz/src/org/jboss/seam/example/quartz/Payment.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Payment.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/quartz/src/org/jboss/seam/example/quartz/Payment.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- Payment.java	30 Jul 2007 19:10:38 -0000	1.5
  +++ Payment.java	15 Oct 2007 13:32:15 -0000	1.6
  @@ -10,7 +10,6 @@
   import javax.persistence.GeneratedValue;
   import javax.persistence.Id;
   import javax.persistence.Lob;
  -import javax.persistence.Transient;
   import javax.persistence.ManyToOne;
   
   import org.hibernate.validator.Length;
  @@ -148,6 +147,7 @@
   
       public enum Frequency {
           ONCE(null), 
  +        EVERY_SECOND(1000l), // Just for testing
           EVERY_MINUTE(60*1000l),
           HOURLY(60*60*1000l), 
           DAILY(24*60*60*1000l), 
  
  
  



More information about the jboss-cvs-commits mailing list