View Javadoc

1   package org.eclipse.jetty.server.handler;
2   //========================================================================
3   //Copyright 2011-2012 Mort Bay Consulting Pty. Ltd.
4   //------------------------------------------------------------------------
5   //All rights reserved. This program and the accompanying materials
6   //are made available under the terms of the Eclipse Public License v1.0
7   //and Apache License v2.0 which accompanies this distribution.
8   //The Eclipse Public License is available at
9   //http://www.eclipse.org/legal/epl-v10.html
10  //The Apache License v2.0 is available at
11  //http://www.opensource.org/licenses/apache2.0.php
12  //You may elect to redistribute this code under either of these licenses.
13  //========================================================================
14  
15  import org.eclipse.jetty.server.Handler;
16  
17  
18  /* ------------------------------------------------------------ */
19  /** ProxyHandler.
20   * <p>This class has been renamed to ConnectHandler, as it only implements
21   * the CONNECT method (and a ProxyServlet must be used for full proxy handling).
22   * @deprecated Use {@link ConnectHandler}
23   */
24  public class ProxyHandler extends ConnectHandler
25  {
26      public ProxyHandler()
27      {
28          super();
29      }
30  
31      public ProxyHandler(Handler handler, String[] white, String[] black)
32      {
33          super(handler,white,black);
34      }
35  
36      public ProxyHandler(Handler handler)
37      {
38          super(handler);
39      }
40  
41      public ProxyHandler(String[] white, String[] black)
42      {
43          super(white,black);
44      }
45  }