[jboss-cvs] JBossAS SVN: r80537 - in projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache: helpers and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 4 20:01:00 EST 2008


Author: alesj
Date: 2008-11-04 20:01:00 -0500 (Tue, 04 Nov 2008)
New Revision: 80537

Added:
   projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/helpers/
   projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/helpers/NoopVFSCache.java
Removed:
   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:
Make helpers package.

Deleted: 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	2008-11-05 00:54:28 UTC (rev 80536)
+++ projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/NoopVFSCache.java	2008-11-05 01:01:00 UTC (rev 80537)
@@ -1,69 +0,0 @@
-/*
-* 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-05 00:54:28 UTC (rev 80536)
+++ projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/VFSCacheFactory.java	2008-11-05 01:01:00 UTC (rev 80537)
@@ -26,6 +26,7 @@
 
 import org.jboss.logging.Logger;
 import org.jboss.virtual.VFSUtils;
+import org.jboss.virtual.spi.cache.helpers.NoopVFSCache;
 
 /**
  * Simple vfs cache factory.

Copied: projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/helpers/NoopVFSCache.java (from rev 80534, projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/NoopVFSCache.java)
===================================================================
--- projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/helpers/NoopVFSCache.java	                        (rev 0)
+++ projects/vfs/trunk/src/main/java/org/jboss/virtual/spi/cache/helpers/NoopVFSCache.java	2008-11-05 01:01:00 UTC (rev 80537)
@@ -0,0 +1,70 @@
+/*
+* 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.helpers;
+
+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;
+import org.jboss.virtual.spi.cache.VFSCache;
+
+/**
+ * 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()
+   {
+   }
+}




More information about the jboss-cvs-commits mailing list