[jboss-cvs] JBossAS SVN: r80534 - projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 4 18:53:50 EST 2008


Author: alesj
Date: 2008-11-04 18:53:50 -0500 (Tue, 04 Nov 2008)
New Revision: 80534

Added:
   projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/NoopVFSCache.java
Modified:
   projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/VFSCacheFactory.java
Log:
Move noop vfs cache from inner class.

Added: projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/NoopVFSCache.java
===================================================================
--- projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/NoopVFSCache.java	                        (rev 0)
+++ projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/NoopVFSCache.java	2008-11-04 23:53:50 UTC (rev 80534)
@@ -0,0 +1,69 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2006, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+package org.jboss.virtual.spi.cache;
+
+import java.net.URI;
+import java.net.URL;
+import java.io.IOException;
+
+import org.jboss.virtual.VirtualFile;
+import org.jboss.virtual.VFS;
+import org.jboss.virtual.spi.VFSContext;
+
+/**
+ * Noop cache.
+ * Doesn't do any caching.
+ *
+ * @author <a href="mailto:ales.justin at jboss.com">Ales Justin</a>
+ */
+public class NoopVFSCache implements VFSCache
+{
+   public VirtualFile getFile(URI uri) throws IOException
+   {
+      return VFS.getRoot(uri);
+   }
+
+   public VirtualFile getFile(URL url) throws IOException
+   {
+      return VFS.getRoot(url);
+   }
+
+   public void putContext(VFSContext context)
+   {
+   }
+
+   public void removeContext(VFSContext context)
+   {
+   }
+
+   public void start() throws Exception
+   {
+   }
+
+   public void stop()
+   {
+   }
+
+   public void flush()
+   {
+   }
+}

Modified: projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/VFSCacheFactory.java
===================================================================
--- projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/VFSCacheFactory.java	2008-11-04 23:17:26 UTC (rev 80533)
+++ projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/VFSCacheFactory.java	2008-11-04 23:53:50 UTC (rev 80534)
@@ -21,17 +21,11 @@
 */
 package org.jboss.virtual.spi.cache;
 
-import java.io.IOException;
-import java.net.URI;
-import java.net.URL;
 import java.security.AccessController;
 import java.security.PrivilegedAction;
 
 import org.jboss.logging.Logger;
-import org.jboss.virtual.VFS;
 import org.jboss.virtual.VFSUtils;
-import org.jboss.virtual.VirtualFile;
-import org.jboss.virtual.spi.VFSContext;
 
 /**
  * Simple vfs cache factory.
@@ -108,41 +102,4 @@
          return new NoopVFSCache();
       }
    }
-
-   /**
-    * Noop cache.
-    * Doesn't do any caching.
-    */
-   private static class NoopVFSCache implements VFSCache
-   {
-      public VirtualFile getFile(URI uri) throws IOException
-      {
-         return VFS.getRoot(uri);
-      }
-
-      public VirtualFile getFile(URL url) throws IOException
-      {
-         return VFS.getRoot(url);
-      }
-
-      public void putContext(VFSContext context)
-      {
-      }
-
-      public void removeContext(VFSContext context)
-      {
-      }
-
-      public void start() throws Exception
-      {
-      }
-
-      public void stop()
-      {
-      }
-
-      public void flush()
-      {
-      }
-   }
 }
\ No newline at end of file




More information about the jboss-cvs-commits mailing list