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

Gavin King gavin.king at jboss.com
Thu Aug 16 16:23:40 EDT 2007


  User: gavin   
  Date: 07/08/16 16:23:40

  Modified:    src/main/org/jboss/seam/core  Contexts.java
  Log:
  autocreate
  
  Revision  Changes    Path
  1.5       +7 -7      jboss-seam/src/main/org/jboss/seam/core/Contexts.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Contexts.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Contexts.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- Contexts.java	15 Aug 2007 19:22:57 -0000	1.4
  +++ Contexts.java	16 Aug 2007 20:23:40 -0000	1.5
  @@ -28,43 +28,43 @@
   public class Contexts 
   {
   
  -   @Factory("org.jboss.seam.core.eventContext")
  +   @Factory(value="org.jboss.seam.core.eventContext", autoCreate=true)
      public Context getEventContext() 
      {
         return org.jboss.seam.contexts.Contexts.getEventContext();
      }
   
  -   @Factory("org.jboss.seam.core.methodContext")
  +   @Factory(value="org.jboss.seam.core.methodContext", autoCreate=true)
      public Context getMethodContext() 
      {
         return org.jboss.seam.contexts.Contexts.getMethodContext();
      }
   
  -   @Factory("org.jboss.seam.core.pageContext")
  +   @Factory(value="org.jboss.seam.core.pageContext", autoCreate=true)
      public Context getPageContext() 
      {
         return org.jboss.seam.contexts.Contexts.getPageContext();
      }
   
  -   @Factory("org.jboss.seam.core.sessionContext")
  +   @Factory(value="org.jboss.seam.core.sessionContext", autoCreate=true)
      public Context getSessionContext() 
      {
         return org.jboss.seam.contexts.Contexts.getSessionContext();
      }
   
  -   @Factory("org.jboss.seam.core.applicationContext")
  +   @Factory(value="org.jboss.seam.core.applicationContext", autoCreate=true)
      public Context getApplicationContext() 
      {
         return org.jboss.seam.contexts.Contexts.getApplicationContext();
      }
   
  -   @Factory("org.jboss.seam.core.conversationContext")
  +   @Factory(value="org.jboss.seam.core.conversationContext", autoCreate=true)
      public Context getConversationContext() 
      {
         return org.jboss.seam.contexts.Contexts.getConversationContext();
      }
   
  -   @Factory("org.jboss.seam.core.businessProcessContext")
  +   @Factory(value="org.jboss.seam.core.businessProcessContext", autoCreate=true)
      public Context getBusinessProcessContext() 
      {
         return org.jboss.seam.contexts.Contexts.getBusinessProcessContext();
  
  
  



More information about the jboss-cvs-commits mailing list