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

Aslak Knutsen (JIRA) jira-events at lists.jboss.org
Fri Mar 18 01:45:56 EDT 2011


     [ https://issues.jboss.org/browse/ARQ-192?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Aslak Knutsen closed ARQ-192.
-----------------------------



> Install OSGi bundles in memory
> ------------------------------
>
>                 Key: ARQ-192
>                 URL: https://issues.jboss.org/browse/ARQ-192
>             Project: Arquillian
>          Issue Type: Task
>          Components: OSGi Containers
>            Reporter: Thomas Diesler
>            Assignee: Thomas Diesler
>             Fix For: 1.0.0.Alpha5
>
>
> 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.
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the arquillian-issues mailing list