JobDetail
itself is already a JavaBean but lacks sensible defaults. This class uses the Spring bean name as job name, and the Quartz default group ("DEFAULT") as job group if not specified.
NOTE: This convenience subclass does not work against Quartz 2.0. Use Quartz 2.0's native JobDetailImpl
class or the new Quartz 2.0 builder API instead. Alternatively, switch to Spring's {@link JobDetailFactoryBean}which largely is a drop-in replacement for this class and its properties and consistently works against Quartz 1.x as well as Quartz 2.0/2.1.
@author Juergen Hoeller
@since 18.02.2004
@see #setName
@see #setGroup
@see org.springframework.beans.factory.BeanNameAware
@see org.quartz.Scheduler#DEFAULT_GROUP
|
|