[jboss-cvs] JBossAS SVN: r68555 - projects/vfs/trunk/src/main/java/org/jboss/virtual/plugins/context/jar.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 25 20:11:09 EST 2007


Author: alesj
Date: 2007-12-25 20:11:09 -0500 (Tue, 25 Dec 2007)
New Revision: 68555

Modified:
   projects/vfs/trunk/src/main/java/org/jboss/virtual/plugins/context/jar/NestedJarHandler.java
Log:
Temp file deserialization?

Modified: projects/vfs/trunk/src/main/java/org/jboss/virtual/plugins/context/jar/NestedJarHandler.java
===================================================================
--- projects/vfs/trunk/src/main/java/org/jboss/virtual/plugins/context/jar/NestedJarHandler.java	2007-12-26 00:56:58 UTC (rev 68554)
+++ projects/vfs/trunk/src/main/java/org/jboss/virtual/plugins/context/jar/NestedJarHandler.java	2007-12-26 01:11:09 UTC (rev 68555)
@@ -27,8 +27,8 @@
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.ObjectInputStream;
+import java.net.URISyntaxException;
 import java.net.URL;
-import java.net.URISyntaxException;
 import java.util.jar.JarEntry;
 import java.util.jar.JarFile;
 
@@ -38,6 +38,7 @@
 /**
  * Nested Jar Handler.
  * 
+ * @author <a href="ales.justin at jboss.com">Ales Justin</a>
  * @author <a href="adrian at jboss.com">Adrian Brock</a>
  * @author Scott.Stark at jboss.org
  * @version $Revision: 1.1 $
@@ -179,4 +180,16 @@
    {
       return new FileInputStream(temp);
    }
+
+   /**
+    * Restore the temp file
+    *
+    * @param in the input stream
+    * @throws IOException for any error reading the jar file
+    * @throws ClassNotFoundException for any jar class finding errors
+    */
+   private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
+   {
+      // TODO - temp?
+   }
 }




More information about the jboss-cvs-commits mailing list