/*
 * JBoss, the OpenSource WebOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package org.jboss.web.loadbalancer.scheduler;

import java.net.URL;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpMethod;
import org.jboss.web.loadbalancer.util.Request;

/**
 * Interface for schedulers.
 *
 * @author Thomas Peuss <jboss@peuss.de>
 * @version $Revision: 1.3 $
 */
public interface SchedulerMBean {
  public void getHost(Request schedRequest) throws
      NoHostAvailableException;
}