org.seleniumhq.jetty7.server.handler.ProxyHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetty-repacked Show documentation
Show all versions of jetty-repacked Show documentation
Browser automation framework dependency on jetty
package org.eclipse.jetty.server.handler;
import org.eclipse.jetty.server.Handler;
/* ------------------------------------------------------------ */
/** ProxyHandler.
* This class has been renamed to ConnectHandler, as it only implements
* the CONNECT method (and a ProxyServlet must be used for full proxy handling).
* @deprecated Use {@link ConnectHandler}
*/
public class ProxyHandler extends ConnectHandler
{
public ProxyHandler()
{
super();
}
public ProxyHandler(Handler handler, String[] white, String[] black)
{
super(handler,white,black);
}
public ProxyHandler(Handler handler)
{
super(handler);
}
public ProxyHandler(String[] white, String[] black)
{
super(white,black);
}
}