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 org.exoplatform.container.PortalContainer; 8 /**9 * @author Tuan Nguyen (tuan08@users.sourceforge.net)10 * @since Nov 30, 200411 * @version $Id$12 */13 public interface Task {14 public void execute() throws Exception ;15 public String getName() ;16 public String getDescription() ;17 public PortalContainer getPortalContainer() ;18 }