/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.deployment.scanner; /** * MBean interface. */ public interface DeploymentScannerMBean extends org.jboss.system.ServiceMBean { /** * The ObjectName of the {@link Deployer} which we will use. * @param deployerName The object name of the deployer to use. */ void setDeployer(javax.management.ObjectName deployerName); /** * Get the ObjectName of the {@link Deployer} which we are using. * @return The object name of the deployer we are using. */ javax.management.ObjectName getDeployer(); /** * Set the scan period for the scanner. * @param period This is the time in milliseconds between scans. * @throws IllegalArgumentException Period value out of range. */ void setScanPeriod(long period); /** * Disable or enable the period based deployment scanning. <p>Manual scanning can still be performed by calling {@link #scan}. * @param flag True to enable or false to disable period based scanning. */ void setScanEnabled(boolean flag); /** * Check if period based scanning is enabled. * @return True if enabled, false if disabled. */ boolean isScanEnabled(); /** * How long to wait in stop for the background thread to stop * * @return the time in milliseconds. */ long getStopTimeOut(); /** * How long to wait in stop for the background thread to stop * * @param stopTimeOut the time in milliseconds. */ void setStopTimeOut(long stopTimeOut); /** * Scan for deployment changes. * @throws IllegalStateException Not initialized. * @throws Exception Scan failed. */ void scan() throws java.lang.Exception; }