public interface ClassLoadHelper
Modifier and Type | Method and Description |
---|---|
java.lang.ClassLoader |
getClassLoader()
Enable sharing of the class-loader with 3rd party (e.g. digester).
|
java.net.URL |
getResource(java.lang.String name)
Finds a resource with a given name.
|
java.io.InputStream |
getResourceAsStream(java.lang.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.
|
java.lang.Class |
loadClass(java.lang.String name)
Return the class with the given name.
|
void initialize()
java.lang.Class loadClass(java.lang.String name) throws java.lang.ClassNotFoundException
name
- the fqcn of the class to load.java.lang.ClassNotFoundException
- if the class can be found in the classpath.java.net.URL getResource(java.lang.String name)
name
- name of the desired resourcejava.io.InputStream getResourceAsStream(java.lang.String name)
name
- name of the desired resourcejava.lang.ClassLoader getClassLoader()