Examples of addLocalDependencies()


Examples of org.jboss.as.server.deployment.module.ModuleSpecification.addLocalDependencies()

                moduleSpecification.addResourceLoader(resourceLoaderSpec.get());

                // if we're processing the WSRP admin, add the plugins as local dependencies as well, just in case
                if (isWSRPAdmin) {
                    synchronized (this) {
                        moduleSpecification.addLocalDependencies(loadedPluginsAsDependencies);
                    }
                    log.info("Adding " + loadedPluginsAsDependencies + " dependencies to WSRP admin module");
                }
            }
View Full Code Here

Examples of org.jboss.as.server.deployment.module.ModuleSpecification.addLocalDependencies()

            // GTNPORTAL-3232: also include the portal.war so that the consumer can access the plugins
            if (name.contains("wsrp-producer") || name.contains("portal.war")) {
                ModuleSpecification moduleSpecification = du.getAttachment(Attachments.MODULE_SPECIFICATION);

                synchronized (this) {
                    moduleSpecification.addLocalDependencies(loadedPluginsAsDependencies);
                }
                log.info("Adding " + loadedPluginsAsDependencies + " dependencies to WSRP producer module");
            }
        }
    }
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.