1 /*2 * JBoss, the OpenSource WebOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.web.loadbalancer.scheduler;8 9 import java.net.URL ;10 import javax.servlet.http.HttpServletRequest ;11 import javax.servlet.http.HttpServletResponse ;12 13 import org.apache.commons.httpclient.HttpClient;14 import org.apache.commons.httpclient.HttpMethod;15 import org.jboss.web.loadbalancer.util.Request;16 17 /**18 * Interface for schedulers.19 *20 * @author Thomas Peuss <jboss@peuss.de>21 * @version $Revision: 1.3 $22 */23 public interface SchedulerMBean {24 public void getHost(Request schedRequest) throws25 NoHostAvailableException;26 }27