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

Gavin King gavin.king at jboss.com
Thu Oct 5 17:15:23 EDT 2006


  User: gavin   
  Date: 06/10/05 17:15:23

  Modified:    src/main/org/jboss/seam/init  Initialization.java
  Log:
  current datetime components
  
  Revision  Changes    Path
  1.89      +7 -1      jboss-seam/src/main/org/jboss/seam/init/Initialization.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Initialization.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/init/Initialization.java,v
  retrieving revision 1.88
  retrieving revision 1.89
  diff -u -b -r1.88 -r1.89
  --- Initialization.java	3 Oct 2006 17:16:45 -0000	1.88
  +++ Initialization.java	5 Oct 2006 21:15:23 -0000	1.89
  @@ -78,6 +78,9 @@
   import org.jboss.seam.core.UserPrincipal;
   import org.jboss.seam.debug.Introspector;
   import org.jboss.seam.deployment.Scanner;
  +import org.jboss.seam.framework.CurrentDate;
  +import org.jboss.seam.framework.CurrentDatetime;
  +import org.jboss.seam.framework.CurrentTime;
   import org.jboss.seam.jms.ManagedQueueSender;
   import org.jboss.seam.jms.ManagedTopicPublisher;
   import org.jboss.seam.jms.QueueConnection;
  @@ -97,7 +100,7 @@
   /**
    * @author Gavin King
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
  - * @version $Revision: 1.88 $
  + * @version $Revision: 1.89 $
    */
   public class Initialization
   {
  @@ -381,6 +384,9 @@
         addComponent( SubscriptionRegistry.class, context );
         addComponent( RemotingConfig.class, context );
         addComponent( TouchedContexts.class, context );
  +      addComponent( CurrentDate.class, context );
  +      addComponent( CurrentTime.class, context );
  +      addComponent( CurrentDatetime.class, context );
   
        try
         {
  
  
  



More information about the jboss-cvs-commits mailing list