Example usage for java.net URLClassLoader subclass-usage

List of usage examples for java.net URLClassLoader subclass-usage

Introduction

In this page you can find the example usage for java.net URLClassLoader subclass-usage.

Usage

From source file org.sakaiproject.kernel.loader.server.SwitchedClassLoader.java

/**
 *
 */
public class SwitchedClassLoader extends URLClassLoader {

    private static final Log LOG = LogFactory.getLog(SwitchedClassLoader.class);

From source file org.ops4j.pax.web.jsp.internal.JasperClassLoader.java

/**
 * Jasper enforces a URLClassLoader so he can lookup the jars in order to get the TLDs.
 * This class loader will use the Bundle-ClassPath to get the list of classloaders and delegate class loading to a
 * bundle class loader.
 *
 * @author Alin Dreghiciu

From source file me.rgcjonas.portableMinecraftLauncher.ModdingClassLoader.java

/**
 * A ClassLoader designed for modifying Class files at runtime while loading them.
 * 
 * In order to use this, you need to subclass and override {@link getModdedClasses}. 
 * The resulting class can be used as drop-in replacement for URLClassLoader.
 * 

From source file org.impalaframework.classloader.BaseURLClassLoader.java

/**
 * {@link ClassLoader} which resolves a particular class or resource from one of
 * a set of locations on the file system. Note that this class is abstract as it
 * does not override the superclass's <code>loadClass()</code> method.
 * 
 * @author Phil Zoio

From source file net.hillsdon.reviki.wiki.plugin.PluginClassLoader.java

/**
 * A really simple system for plugin classloading.
 * 
 * The relative entries in manifest entry Class-Path are assumed to point to jars
 * in the root of the plugin jar.
 * 

From source file de.micromata.genome.gwiki.plugin.CombinedClassLoader.java

/**
 * @author Roger Rene Kommer (r.kommer@micromata.de)
 * 
 */
public class CombinedClassLoader extends URLClassLoader {
    private List<ClassLoader> parents = new ArrayList<ClassLoader>();

From source file org.polymap.service.geoserver.GeoServerClassLoader.java

/**
 * This ClassLoader acts like a WebAppClassLoader for the GeoServer instances.
 * It helps to start several GeoServers in separate (servlet) contexts.
 * 
 * @see "http://www.devdaily.com/java/jwarehouse/jetty-6.1.9/modules/jetty/src/main/java/org/mortbay/jetty/webapp/WebAppClassLoader.java.shtml"
 * @author <a href="http://www.polymap.de">Falko Braeutigam</a>

From source file org.commoncrawl.server.DynamicClassLoader.java

/**
 * 
 * @author rana
 *
 */
public class DynamicClassLoader extends URLClassLoader {

From source file org.eu.gasp.core.internal.PluginClassLoader.java

public class PluginClassLoader extends URLClassLoader {
    private final Log log = LogFactory.getLog(getClass());
    private final DefaultPluginRegistry pluginRegistry;
    private final PluginDescriptor pluginDescriptor;

    public PluginClassLoader(final DefaultPluginRegistry pluginRegistry, PluginDescriptor pluginDescriptor,

From source file com.krawler.runtime.utils.URLClassLoaderUtil.java

/**
 *
 * @author shayanthan.k
 *
 */
public class URLClassLoaderUtil extends URLClassLoader {