Package org.glassfish.internal.deployment

Examples of org.glassfish.internal.deployment.ApplicationInfoProvider


                    for (URL url : moduleLibraries) {
                        uris.add(Util.toURI(url));
                    }
                } else {
                    // non-standalone case, we need to look at other libraries too
                    ApplicationInfoProvider appInfoProvider = habitat.getComponent(ApplicationInfoProvider.class);
                    if (appInfoProvider != null) {
                        List<URL> libraryJars = appInfoProvider.getLibraryJars(context);
                        for (URL url : libraryJars) {
                            uris.add(Util.toURI(url));
                        }
                    }
                }
View Full Code Here

TOP

Related Classes of org.glassfish.internal.deployment.ApplicationInfoProvider

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.