Package org.jboss.shrinkwrap.vfs3

Examples of org.jboss.shrinkwrap.vfs3.ArchiveFileSystem


  
   private VirtualFile mount(Archive<?> archive) throws IOException
   {
      final TempDir tempDir = tempFileProvider.createTempDir(archive.getName());
      VirtualFile virtualFile = VFS.getChild(UUID.randomUUID().toString()).getChild(archive.getName());
      vfsHandles.add(VFS.mount(virtualFile, new ArchiveFileSystem(archive, tempDir)));
      mountZipFiles(virtualFile);
      return virtualFile;
   }
View Full Code Here

TOP

Related Classes of org.jboss.shrinkwrap.vfs3.ArchiveFileSystem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.