| DeployService.java |
/* JFox, the OpenSource J2EE Application Server
*
* Copyright (C) 2002 huihoo.com
* Distributable under GNU LGPL license
* See the GNU Lesser General Public License for more details.
*/
package org.jfox.ejb.deploy;
import java.io.File;
import java.net.URL;
/**
* 监视指定的目录,在增加、修改的时候自动发布 jar
*
* @author <a href="mailto:young_yy@hotmail.com">Young Yang</a>
*/
public interface DeployService {
void setSleepTime(long time);
long getSleepTime();
void addDeployDirectory(String url);
File[] getDeployDirectories();
URL[] getDeployedJars();
}