Package org.apache.openejb.assembler.classic

Examples of org.apache.openejb.assembler.classic.BeansInfo$ExclusionEntryInfo


        if (jar.getEjbJar().getRelationships() != null) {
            initRelationships(jar, infos);
        }

        if (jar.getBeans() != null) {
            ejbJar.beans = new BeansInfo();

            ejbJar.beans.interceptors.addAll(jar.getBeans().getInterceptors());
            ejbJar.beans.decorators.addAll(jar.getBeans().getDecorators());
            ejbJar.beans.alternativeClasses.addAll(jar.getBeans().getAlternativeClasses());
            ejbJar.beans.alternativeStereotypes.addAll(jar.getBeans().getAlternativeStereotypes());
View Full Code Here


        if (jar.getEjbJar().getRelationships() != null) {
            initRelationships(jar, infos);
        }

        if (jar.getBeans() != null) {
            ejbJar.beans = new BeansInfo();

            ejbJar.beans.interceptors.addAll(jar.getBeans().getInterceptors());
            ejbJar.beans.decorators.addAll(jar.getBeans().getDecorators());
            ejbJar.beans.alternativeClasses.addAll(jar.getBeans().getAlternativeClasses());
            ejbJar.beans.alternativeStereotypes.addAll(jar.getBeans().getAlternativeStereotypes());
View Full Code Here

        cdiExtensions.put(bundle, names);
    }

    private void saveCDIClasses(final Bundle bundle, final AppInfo app) {
        for (EjbJarInfo module : app.ejbJars) {
            final BeansInfo beans = module.beans;
            if (beans == null) {
                continue;
            }

            storeCDIClasses(bundle, beans.managedClasses);
View Full Code Here

        }

        final AnnotationManager annotationManager = webBeansContext.getAnnotationManager();

        for (EjbJarInfo ejbJar : appInfo.ejbJars) {
            final BeansInfo beans = ejbJar.beans;

            if (beans == null) continue;

            // fail fast
            final StringBuilder errors = new StringBuilder("You can't define multiple times the same class in beans.xml: ");
View Full Code Here

TOP

Related Classes of org.apache.openejb.assembler.classic.BeansInfo$ExclusionEntryInfo

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.