org.quartz.spi
Interface ClassLoadHelper

All Known Implementing Classes:
CascadingClassLoadHelper, InitThreadContextClassLoadHelper, SimpleClassLoadHelper, ThreadContextClassLoadHelper

public interface ClassLoadHelper

An interface for classes wishing to provide the service of loading classes within the scheduler...

Author:
jhouse

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.
 

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.


loadClass

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

Throws:
java.lang.ClassNotFoundException

Quartz Project Page