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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Apr 17 17:08:25 EDT 2008


Author: alesj
Date: 2008-04-17 17:08:25 -0400 (Thu, 17 Apr 2008)
New Revision: 72390

Modified:
   projects/vfs/trunk/src/main/java/org/jboss/virtual/VFSUtils.java
Log:
Create unpackRecursively API.

Modified: projects/vfs/trunk/src/main/java/org/jboss/virtual/VFSUtils.java
===================================================================
--- projects/vfs/trunk/src/main/java/org/jboss/virtual/VFSUtils.java	2008-04-17 20:49:45 UTC (rev 72389)
+++ projects/vfs/trunk/src/main/java/org/jboss/virtual/VFSUtils.java	2008-04-17 21:08:25 UTC (rev 72390)
@@ -505,6 +505,19 @@
    }
 
    /**
+    * Unpack recursively the artifact under file param.
+    *
+    * @param file the file to unpack recursively
+    * @return unpacked file
+    * @throws IOException for any io error
+    * @throws URISyntaxException for any uri error
+    */
+   public static VirtualFile unpackRecursively(VirtualFile file) throws IOException, URISyntaxException
+   {
+      throw new UnsupportedOperationException("Recursive unpack is not yet supported: " + file);
+   }
+
+   /**
     * Move the artifact under file param.
     *
     * @param file the file to move




More information about the jboss-cvs-commits mailing list