[arquillian-issues] [JBoss JIRA] Created: (ARQ-192) Install OSGi bundles in memory

Thomas Diesler (JIRA) jira-events at lists.jboss.org
Thu Jun 24 06:08:46 EDT 2010


Install OSGi bundles in memory
------------------------------

                 Key: ARQ-192
                 URL: https://jira.jboss.org/browse/ARQ-192
             Project: Arquillian
          Issue Type: Task
            Reporter: Thomas Diesler


Currently the OSGiDeploymentPackager transforms a JavaArchive into a VF

   private VirtualFile toVirtualFile(Archive<?> archive) throws IOException, MalformedURLException
   {
      // [TODO] Can this be done in memory?
      ZipExporter exporter = archive.as(ZipExporter.class);
      String archiveName = archive.getName();
      int dotIndex = archiveName.lastIndexOf(".");
      if (dotIndex > 0)
         archiveName = archiveName.substring(0, dotIndex);
      File target = File.createTempFile(archiveName + "-", ".jar");
      exporter.exportZip(target, true);
      target.deleteOnExit();
      return AbstractVFS.getRoot(target.toURI().toURL());
   }

We should be able to install the Archive directly and in-memory

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the arquillian-issues mailing list