You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by gh...@apache.org on 2003/10/27 03:30:44 UTC

cvs commit: cocoon-2.2/src/java/org/apache/cocoon/components/store/impl FilesystemStore.java DefaultStore.java

ghoward     2003/10/26 18:30:44

  Modified:    src/java/org/apache/cocoon/components/store/impl
                        FilesystemStore.java DefaultStore.java
  Log:
  fortressifying
  
  Revision  Changes    Path
  1.2       +5 -1      cocoon-2.2/src/java/org/apache/cocoon/components/store/impl/FilesystemStore.java
  
  Index: FilesystemStore.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.2/src/java/org/apache/cocoon/components/store/impl/FilesystemStore.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FilesystemStore.java	9 Mar 2003 00:09:15 -0000	1.1
  +++ FilesystemStore.java	27 Oct 2003 02:30:44 -0000	1.2
  @@ -69,6 +69,10 @@
    * @author <a href="mailto:cziegeler@apache.org">Carsten Ziegeler</a>
    * @author <a href="mailto:vgritsenko@apache.org">Vadim Gritsenko</a>
    * @version CVS $Id$
  + * 
  + * @avalon.component
  + * @avalon.service type="Store"
  + * @avalon.lifestyle type="singleton"
    */
   public final class FilesystemStore
   extends AbstractFilesystemStore
  
  
  
  1.7       +6 -3      cocoon-2.2/src/java/org/apache/cocoon/components/store/impl/DefaultStore.java
  
  Index: DefaultStore.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.2/src/java/org/apache/cocoon/components/store/impl/DefaultStore.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- DefaultStore.java	12 Aug 2003 16:01:01 -0000	1.6
  +++ DefaultStore.java	27 Oct 2003 02:30:44 -0000	1.7
  @@ -64,7 +64,6 @@
   import org.apache.avalon.framework.parameters.ParameterException;
   import org.apache.avalon.framework.parameters.Parameterizable;
   import org.apache.avalon.framework.parameters.Parameters;
  -import org.apache.avalon.framework.thread.ThreadSafe;
   import org.apache.cocoon.Constants;
   import org.apache.cocoon.util.IOUtils;
   import org.apache.excalibur.store.impl.AbstractJispFilesystemStore;
  @@ -77,11 +76,15 @@
    * @author <a href="mailto:g-froehlich@gmx.de">Gerhard Froehlich</a>
    * @author <a href="mailto:vgritsenko@apache.org">Vadim Gritsenko</a>
    * @version CVS $Id$
  + * 
  + * @avalon.component
  + * @avalon.service type="Store"
  + * @x-avalon.lifestyle type="singleton"
  + * @x-avalon.info name="persistent-store"
    */
   public class DefaultStore extends AbstractJispFilesystemStore
       implements org.apache.excalibur.store.Store,
                  Contextualizable,
  -               ThreadSafe,
                  Parameterizable,
                  Disposable {