
org.jboss.weld.resources.ClassLoaderResourceLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-se-shaded Show documentation
Show all versions of weld-se-shaded Show documentation
This jar bundles all the bits of Weld and CDI required for Java SE.
package org.jboss.weld.resources;
/**
* A (@link ResourceLoader} implementation that uses a specific @{link ClassLoader}
*
* @author Marius Bogoevici
*
*/
public class ClassLoaderResourceLoader extends AbstractClassLoaderResourceLoader {
private ClassLoader classLoader;
public ClassLoaderResourceLoader(ClassLoader classLoader) {
this.classLoader = classLoader;
}
@Override
protected ClassLoader classLoader() {
return classLoader;
}
public void cleanup() {
this.classLoader = null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy