View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2013 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   //
9   //      The Eclipse Public License is available at
10  //      http://www.eclipse.org/legal/epl-v10.html
11  //
12  //      The Apache License v2.0 is available at
13  //      http://www.opensource.org/licenses/apache2.0.php
14  //
15  //  You may elect to redistribute this code under either of these licenses.
16  //  ========================================================================
17  //
18  
19  
20  package org.eclipse.jetty.server;
21  
22  
23  import org.eclipse.jetty.http.HttpVersion;
24  import org.eclipse.jetty.io.Connection;
25  import org.eclipse.jetty.io.EndPoint;
26  import org.eclipse.jetty.util.annotation.Name;
27  
28  
29  /* ------------------------------------------------------------ */
30  /** A Connection Factory for HTTP Connections.
31   * <p>Accepts connections either directly or via SSL and/or NPN chained connection factories.  The accepted 
32   * {@link HttpConnection}s are configured by a {@link HttpConfiguration} instance that is either created by
33   * default or passed in to the constructor.
34   */
35  public class HttpConnectionFactory extends AbstractConnectionFactory implements HttpConfiguration.ConnectionFactory
36  {
37      private final HttpConfiguration _config;
38  
39      public HttpConnectionFactory()
40      {
41          this(new HttpConfiguration());
42          setInputBufferSize(16384);
43      }
44  
45      public HttpConnectionFactory(@Name("config") HttpConfiguration config)
46      {
47          super(HttpVersion.HTTP_1_1.toString());
48          _config=config;
49          addBean(_config);
50      }
51  
52      @Override
53      public HttpConfiguration getHttpConfiguration()
54      {
55          return _config;
56      }
57  
58      @Override
59      public Connection newConnection(Connector connector, EndPoint endPoint)
60      {
61          return configure(new HttpConnection(_config, connector, endPoint), connector, endPoint);
62      }
63  
64  }