Examples of WeldBeanDeploymentArchive


Examples of org.jboss.weld.environment.deployment.WeldBeanDeploymentArchive

     *
     * @return the bean deployment archive
     */
    public WeldBeanDeploymentArchive build() {
        Preconditions.checkArgumentNotNull(id, "id");
        return new WeldBeanDeploymentArchive(id, classes, getBeansXml());
    }
View Full Code Here

Examples of org.jboss.weld.environment.deployment.WeldBeanDeploymentArchive

        Set<WeldBeanDeploymentArchive> discoveredArchives = strategy.performDiscovery();

        String isolation = AccessController.doPrivileged(new GetSystemPropertyAction(ARCHIVE_ISOLATION_SYSTEM_PROPERTY));

        if (isolation != null && Boolean.valueOf(isolation).equals(Boolean.FALSE)) {
            WeldBeanDeploymentArchive archive = WeldBeanDeploymentArchive.merge(bootstrap, discoveredArchives);
            deployment = new WeldDeployment(resourceLoader, bootstrap, Collections.singleton(archive), loadedExtensions);
            CommonLogger.LOG.archiveIsolationDisabled();
        } else {
            deployment=  new WeldDeployment(resourceLoader, bootstrap, discoveredArchives, loadedExtensions);
            CommonLogger.LOG.archiveIsolationEnabled();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.