List of usage examples for java.lang ClassLoader subclass-usage
From source file org.atricore.idbus.kernel.common.support.osgi.OsgiBundlespaceClassLoader.java
/** * @author <a href="mailto:sgonzalez@atricore.org">Sebastian Gonzalez Oyuela</a> * @version $Id$ */ public class OsgiBundlespaceClassLoader extends ClassLoader implements BundleListener {
From source file org.kles.m3.M3ClassLoader.java
public class M3ClassLoader extends ClassLoader { public String[] listSpe = { "Y:/M3BE/env/PREP/Fix/ALS/VFix/bindbg/", "Y:/M3BE/ALS/1310/SP1310C61469/bindbg/", "Y:/M3BE/ALS/1310/base/bindbg/", "Y:/M3BE/CERG/1310/base/bindbg/", "Y:/M3BE/env/PREP/Properties/", "Y:/M3BE/env/PREP/Fix/MVX/HFix/bindbg/", "Y:/M3BE/env/PREP/Fix/MVX/TFix/bindbg/", "Y:/M3BE/env/PREP/Fix/MVX/VFix/bindbg/", "Y:/M3BE/MVX/1310/SP1310S51031/bindbg/",
From source file org.bimserver.plugins.classloaders.JarClassLoader.java
public class JarClassLoader extends ClassLoader { private static final Logger LOGGER = LoggerFactory.getLogger(JarClassLoader.class); private final File jarFile; private final Map<String, byte[]> map = new HashMap<String, byte[]>(); private final Map<String, Class<?>> loadedClasses = new HashMap<String, Class<?>>();
From source file org.echocat.jomon.maven.OverwriteWithMavenResourcesClassLoader.java
public class OverwriteWithMavenResourcesClassLoader extends ClassLoader implements PriorityOrdered, DynamicClassLoader { private static final Logger LOG = LoggerFactory.getLogger(OverwriteWithMavenResourcesClassLoader.class); private static final Map<Set<File>, Collection<File>> ROOT_POMS_RESOURCE_ROOT_CACHE = synchronizedMap( new LRUMap<Set<File>, Collection<File>>(10));
From source file org.springframework.data.keyvalue.riak.util.RiakClassLoader.java
/** * @author J. Brisbin <jon@jbrisbin.com> */ public class RiakClassLoader extends ClassLoader { protected final Log log = LogFactory.getLog(getClass());
From source file com.pentaho.big.data.bundles.impl.shim.common.ShimBridgingClassloader.java
/** * Created by bryan on 6/4/15. */ public class ShimBridgingClassloader extends ClassLoader implements BundleReference { public static final String HADOOP_SPOON_PLUGIN = "HadoopSpoonPlugin"; private static PluginClassloaderGetter pluginClassloaderGetter = new PluginClassloaderGetter();
From source file eu.stratosphere.sopremo.query.PackageClassLoader.java
/** */ public class PackageClassLoader extends ClassLoader { private final List<JarInfo> jarInfos = new ArrayList<JarInfo>(); private static final Log LOG = LogFactory.getLog(PackageClassLoader.class);
From source file org.openmrs.logic.CompilingClassLoader.java
/**
* Class loader that will automatically compile source as necessary when looking for class files.
* This class only deal with the rule java and class file. Separate handler must be registered to create the java file.
*
* Implementation based on http://www.ibm.com/developerworks/edu/j-dw-javaclass-i.html and code from Tammy Dugan and Vibha Anand
* in the dss module.
From source file org.impalaframework.classloader.graph.GraphClassLoader.java
/**
* Class loader backed by a graph of dependent class loaders. Each module will
* have one of these. Includes a mechanism which delegates to first to the class
* loaders of dependent modules, and only uses the local resource class loader
* if this unsuccessful.
*
From source file com.ottogroup.bi.asap.repository.CachedComponentClassLoader.java
/**
* Reads the contents of a provided jar (array of bytes), extracts all {@link Component asap components} and allows
* to access them by providing the component name as well as its version
* @author mnxfst
* @since Oct 29, 2014
* TODO how to manage multiple resources having the same name but being located in different JAR files?