Mercurial Hosting > luan
view src/org/eclipse/jetty/io/AbstractConnection.java @ 1018:4dc1e1a18661
remove HttpSchemes
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 24 Oct 2016 05:37:24 -0600 |
parents | 39154cfa58e4 |
children |
line wrap: on
line source
// // ======================================================================== // Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 // and Apache License v2.0 which accompanies this distribution. // // The Eclipse Public License is available at // http://www.eclipse.org/legal/epl-v10.html // // The Apache License v2.0 is available at // http://www.opensource.org/licenses/apache2.0.php // // You may elect to redistribute this code under either of these licenses. // ======================================================================== // package org.eclipse.jetty.io; import java.io.IOException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public abstract class AbstractConnection implements Connection { private static final Logger LOG = LoggerFactory.getLogger(AbstractConnection.class); public final EndPoint _endp; protected AbstractConnection(EndPoint endp) { _endp = endp; } }