public class InitThreadContextClassLoadHelper extends Object implements ClassLoadHelper
ClassLoadHelper that uses either the context class loader
 of the thread that initialized Quartz.ClassLoadHelper, 
ThreadContextClassLoadHelper, 
SimpleClassLoadHelper, 
CascadingClassLoadHelper, 
LoadingLoaderClassLoadHelper| Constructor and Description | 
|---|
| InitThreadContextClassLoadHelper() | 
| Modifier and Type | Method and Description | 
|---|---|
| ClassLoader | getClassLoader()Enable sharing of the class-loader with 3rd party. | 
| URL | getResource(String name)Finds a resource with a given name. | 
| InputStream | getResourceAsStream(String name)Finds a resource with a given name. | 
| void | initialize()Called to give the ClassLoadHelper a chance to initialize itself,
 including the opportunity to "steal" the class loader off of the calling
 thread, which is the thread that is initializing Quartz. | 
| Class<?> | loadClass(String name)Return the class with the given name. | 
| <T> Class<? extends T> | loadClass(String name,
         Class<T> clazz)Return the class of the given type with the given name. | 
public void initialize()
initialize in interface ClassLoadHelperpublic Class<?> loadClass(String name) throws ClassNotFoundException
loadClass in interface ClassLoadHelpername - the fqcn of the class to load.ClassNotFoundException - if the class can be found in the classpath.public <T> Class<? extends T> loadClass(String name, Class<T> clazz) throws ClassNotFoundException
ClassLoadHelperloadClass in interface ClassLoadHelpername - the fqcn of the class to load.ClassNotFoundException - if the class can be found in the classpath.public URL getResource(String name)
getResource in interface ClassLoadHelpername - name of the desired resourcepublic InputStream getResourceAsStream(String name)
getResourceAsStream in interface ClassLoadHelpername - name of the desired resourcepublic ClassLoader getClassLoader()
getClassLoader in interface ClassLoadHelperCopyright 2001-2019, Terracotta, Inc.