Package org.jboss.as.weld

Examples of org.jboss.as.weld.WeldJBossAllConfiguration


        }

        boolean requireBeanDescriptor = requireBeanDescriptorGlobal;
        boolean nonPortableMode = nonPortableModeGlobal;

        WeldJBossAllConfiguration configuration = deploymentUnit.getAttachment(WeldJBossAllConfiguration.ATTACHMENT_KEY);
        if (configuration != null) {
            requireBeanDescriptor = getValue(configuration.getRequireBeanDescriptor(), requireBeanDescriptorGlobal);
            nonPortableMode = getValue(configuration.getNonPortableMode(), nonPortableMode);
        }
        WeldConfiguration mergedConfiguration = new WeldConfiguration(requireBeanDescriptor, nonPortableMode);
        deploymentUnit.putAttachment(WeldConfiguration.ATTACHMENT_KEY, mergedConfiguration);
    }

TOP

Related Classes of org.jboss.as.weld.WeldJBossAllConfiguration

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.