|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ClassLoadHelper
An interface for classes wishing to provide the service of loading classes and resources within the scheduler...
Method Summary | ||
---|---|---|
ClassLoader |
getClassLoader()
Enable sharing of the class-loader with 3rd party (e.g. |
|
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. |
|
|
loadClass(String name,
Class<T> clazz)
Return the class of the given type with the given name. |
Method Detail |
---|
void initialize()
Class<?> loadClass(String name) throws ClassNotFoundException
name
- the fqcn of the class to load.
ClassNotFoundException
- if the class can be found in the classpath.<T> Class<? extends T> loadClass(String name, Class<T> clazz) throws ClassNotFoundException
name
- the fqcn of the class to load.
ClassNotFoundException
- if the class can be found in the classpath.URL getResource(String name)
name
- name of the desired resource
InputStream getResourceAsStream(String name)
name
- name of the desired resource
ClassLoader getClassLoader()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |