1 /***************************************************************************2 * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *3 * Please look at license.txt in info directory for more license detail. *4 **************************************************************************/5 package org.exoplatform.services.task;6 7 import java.util.Collection ;8 /**9 * @author Tuan Nguyen (tuan08@users.sourceforge.net)10 * @since Nov 30, 200411 * @version $Id$12 */13 public interface TaskService {14 public void queueTask(Task task) ;15 public Collection getTasks() ;16 17 public void queueRepeatTask(Task task) ;18 public void removeRepeatTask(Task task) ;19 public Collection getRepeatTasks() ;20 21 }