Package hudson

Examples of hudson.ClassicPluginStrategy$DependencyClassLoader


    @Inject
    public PluginWrapperFactory(final PluginManager plugins) {
        checkNotNull(plugins);

        // Using the Classic strategy to build the wrapper, since its not easy to re-implement its logic
        this.delegate = new ClassicPluginStrategy(plugins)
        {
            @Override
            protected ClassLoader createClassLoader(List<File> files, ClassLoader parent, Attributes atts) throws IOException {
                assert files != null;
                List<URL> urls = new ArrayList<URL>(files.size());
View Full Code Here

TOP

Related Classes of hudson.ClassicPluginStrategy$DependencyClassLoader

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.