[jboss-cvs] jboss-seam/examples/spring/src/org/jboss/seam/ioc/spring ...

Norman Richards norman.richards at jboss.com
Mon Feb 12 17:24:28 EST 2007


  User: nrichards
  Date: 07/02/12 17:24:28

  Modified:    examples/spring/src/org/jboss/seam/ioc/spring 
                        SeamPostProcessor.java
  Log:
  remove old code, correct typo
  
  Revision  Changes    Path
  1.3       +7 -1      jboss-seam/examples/spring/src/org/jboss/seam/ioc/spring/SeamPostProcessor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SeamPostProcessor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/spring/src/org/jboss/seam/ioc/spring/SeamPostProcessor.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- SeamPostProcessor.java	12 Feb 2007 21:14:24 -0000	1.2
  +++ SeamPostProcessor.java	12 Feb 2007 22:24:28 -0000	1.3
  @@ -35,6 +35,10 @@
   
      private String scopePrefix;
   
  +    public SeamPostProcessor() {
  +        System.out.println("****************** new seam post processor");
  +    }
  +
      /**
       * Null is not a valid scopePrefix so make it the default is used if null or empty.
       *
  @@ -42,6 +46,7 @@
       */
      public void afterPropertiesSet() throws Exception
      {
  +       System.out.println("****************** after properties set");
         if (scopePrefix == null || "".equals(scopePrefix))
         {
            scopePrefix = DEFAULT_SCOPE_PREFIX;
  @@ -55,6 +60,7 @@
       */
      public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException
      {
  +       System.out.println("****************** post process");
         for (ScopeType scope : ScopeType.values())
         {
            // Don't create a scope for UnSpecified
  
  
  



More information about the jboss-cvs-commits mailing list