The process of configuring Quartz plug-ins is very similar to that of configuring listeners, as described earlier. When you have a class that implements the SchedulerPlugin interface, you configure the plug-in by adding a line similar to this:
org.quartz.plugin.NAME.class = com.foo.MyPluginClass
Here, NAME is a name that you assign to the plug-in. You can pass parameters to a plug-in instance by providing configuration lines like these:
org.quartz.plugin.NAME.propName = propValue org.quartz.plugin.NAME.prop2Name = prop2Value
The NAME for the parameters must match the NAME assigned to the plug-in. For more information on Quartz plug-ins, see Chapter 8, "Using Quartz Plug-Ins."
Configuring Quartz RMI Settings |
Scheduling in the Enterprise
Getting Started with Quartz
Hello, Quartz
Scheduling Jobs
Cron Triggers and More
JobStores and Persistence
Implementing Quartz Listeners
Using Quartz Plug-Ins
Using Quartz Remotely
Using Quartz with J2EE
Clustering Quartz
Quartz Cookbook
Quartz and Web Applications
Using Quartz with Workflow
Appendix A. Quartz Configuration Reference