1 package org.roller.model;2 3 import org.roller.RollerException;4 5 /**6 * Interface for pluggable scheduled task.7 * @author David M Johnson8 */9 public interface ScheduledTask10 {11 /**12 * Initialized scheduled task with Roller instance and real-path to Roller context.13 */14 public void init(Roller roller, String realPath) throws RollerException;15 }16