org.quartz.simpl
Class ThreadContextClassLoadHelper

java.lang.Object
  extended byorg.quartz.simpl.ThreadContextClassLoadHelper
All Implemented Interfaces:
ClassLoadHelper

public class ThreadContextClassLoadHelper
extends java.lang.Object
implements ClassLoadHelper

A ClassLoadHelper that uses either the current thread's context class loader (Thread.currentThread().getContextClassLoader().loadClass( .. )).

Author:
jhouse
See Also:
ClassLoadHelper, InitThreadContextClassLoadHelper, SimpleClassLoadHelper, CascadingClassLoadHelper

Constructor Summary
ThreadContextClassLoadHelper()
           
 
Method Summary
 void initialize()
          Called to give the ClassLoadHelper a chance to initialize itself, including the oportunity 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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ThreadContextClassLoadHelper

public ThreadContextClassLoadHelper()
Method Detail

initialize

public void initialize()
Called to give the ClassLoadHelper a chance to initialize itself, including the oportunity to "steal" the class loader off of the calling thread, which is the thread that is initializing Quartz.

Specified by:
initialize in interface ClassLoadHelper

loadClass

public java.lang.Class loadClass(java.lang.String name)
                          throws java.lang.ClassNotFoundException
Return the class with the given name.

Specified by:
loadClass in interface ClassLoadHelper
Throws:
java.lang.ClassNotFoundException

Quartz Project Page