|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
org.quartz.simpl Class InitThreadContextClassLoadHelper
java.lang.Objectorg.quartz.simpl.InitThreadContextClassLoadHelper
- All Implemented Interfaces:
- org.quartz.spi.ClassLoadHelper
public class InitThreadContextClassLoadHelper
- extends Object
- implements org.quartz.spi.ClassLoadHelper
A ClassLoadHelper that uses either the context class loader
of the thread that initialized Quartz.
- Author:
- jhouse, pl47ypus
- See Also:
ClassLoadHelper,ThreadContextClassLoadHelper,SimpleClassLoadHelper,CascadingClassLoadHelper,LoadingLoaderClassLoadHelper
| Constructor Summary | |
|---|---|
InitThreadContextClassLoadHelper()
|
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
InitThreadContextClassLoadHelper
public InitThreadContextClassLoadHelper()
| Method Detail |
|---|
initialize
public 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.
- Specified by:
initializein interfaceorg.quartz.spi.ClassLoadHelper
loadClass
public Class loadClass(String name) throws ClassNotFoundException
- Return the class with the given name.
- Specified by:
loadClassin interfaceorg.quartz.spi.ClassLoadHelper
- Throws:
ClassNotFoundException
getResource
public URL getResource(String name)
- Finds a resource with a given name. This method returns null if no
resource with this name is found.
- Specified by:
getResourcein interfaceorg.quartz.spi.ClassLoadHelper
- Parameters:
name- name of the desired resource- Returns:
- a java.net.URL object
getResourceAsStream
public InputStream getResourceAsStream(String name)
- Finds a resource with a given name. This method returns null if no
resource with this name is found.
- Specified by:
getResourceAsStreamin interfaceorg.quartz.spi.ClassLoadHelper
- Parameters:
name- name of the desired resource- Returns:
- a java.io.InputStream object
getClassLoader
public ClassLoader getClassLoader()
- Enable sharing of the class-loader with 3rd party.
- Specified by:
getClassLoaderin interfaceorg.quartz.spi.ClassLoadHelper
- Returns:
- the class-loader user be the helper.
|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2001-2011, Terracotta, Inc.
org.quartz.simpl.InitThreadContextClassLoadHelper