KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > roller > model > ScheduledTask


1 package org.roller.model;
2
3 import org.roller.RollerException;
4
5 /**
6  * Interface for pluggable scheduled task.
7  * @author David M Johnson
8  */

9 public interface ScheduledTask
10 {
11     /**
12      * Initialized scheduled task with Roller instance and real-path to Roller context.
13      */

14     public void init(Roller roller, String JavaDoc realPath) throws RollerException;
15 }
16
Popular Tags