/* * JBoss, the OpenSource EJB server * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.deployment; import org.jboss.util.ServiceMBean; /** * This is the interface of the AutoDeployer that is exposed for * administration * * @see AutoDeployer * @author Rickard Öberg (rickard.oberg@telkel.com) * @author Toby Allsopp (toby.allsopp@peace.com) * @version $Revision: 1.2.2.1 $ */ public interface AutoDeployerMBean extends ServiceMBean { // Constants ----------------------------------------------------- public static final String OBJECT_NAME = "EJB:service=AutoDeployer"; // Public -------------------------------------------------------- public void setURLs(String urlList); public String getURLs(); public int getTimeout(); public void setTimeout(int timeoutMS); public void setDeployers(String deployers); public String getDeployers(); }