Package org.apache.webbeans.spi.BeanArchiveService

Examples of org.apache.webbeans.spi.BeanArchiveService.BeanArchiveInformation


        final Collection<Archive> archives = new ArrayList<Archive>();
        for (final URL url : urls.values())
        {
            final List<String> urlClasses = new ArrayList<String>();

            BeanArchiveInformation beanArchiveInfo = beanArchiveService.getBeanArchiveInformation(url);
            final Archive archive = new FilteredArchive(ClasspathArchive.archive(loader, url),
                    new BeanArchiveFilter(beanArchiveInfo, urlClasses));

            classesByUrl.put(url.toExternalForm(), new FoundClasses(url, urlClasses, beanArchiveInfo));
            archives.add(archive);
View Full Code Here

TOP

Related Classes of org.apache.webbeans.spi.BeanArchiveService.BeanArchiveInformation

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.