Uses of Interface
org.eclipse.jetty.server.Connector
Packages that use Connector
Package
Description
Jetty Server : Core Server API
Jetty Server : Core Server Connector
Jetty Server : Modular Servlet Integration
-
Uses of Connector in org.eclipse.jetty.server
Subinterfaces of Connector in org.eclipse.jetty.serverClasses in org.eclipse.jetty.server that implement ConnectorModifier and TypeClassDescriptionclass
An abstract implementation ofConnector
that provides aConnectionFactory
mechanism for creatingConnection
instances for various protocols (HTTP, SSL, etc).class
An abstract Network Connector.class
A local connector, mostly for testing purposes.class
A specialized version ofServerConnector
that supportsNetworkTrafficListener
s.class
ThisConnector
implementation is the primary connector for the Jetty server over TCP/IP.Fields in org.eclipse.jetty.server declared as ConnectorModifier and TypeFieldDescriptionprivate final Connector
DetectorConnectionFactory.DetectorConnection._connector
private final Connector
HttpChannel._connector
private final Connector
HttpConnection._connector
private final Connector
ProxyConnectionFactory.ProxyV1ConnectionFactory.ProxyProtocolV1Connection._connector
private final Connector
ProxyConnectionFactory.ProxyV2ConnectionFactory.ProxyProtocolV2Connection._connector
private Connector[]
LowResourceMonitor._monitoredConnectors
private final Connector
NegotiatingServerConnection.connector
Fields in org.eclipse.jetty.server with type parameters of type ConnectorMethods in org.eclipse.jetty.server that return ConnectorModifier and TypeMethodDescriptionHttpChannel.getConnector()
HttpConnection.getConnector()
NegotiatingServerConnection.getConnector()
Server.getConnectors()
protected Connector[]
LowResourceMonitor.getMonitoredOrServerConnectors()
Methods in org.eclipse.jetty.server that return types with arguments of type ConnectorMethods in org.eclipse.jetty.server with parameters of type ConnectorModifier and TypeMethodDescriptionvoid
Server.addConnector
(Connector connector) protected AbstractConnection
AbstractConnectionFactory.configure
(AbstractConnection connection, Connector connector, EndPoint endPoint) protected AbstractConnection
SslConnectionFactory.configure
(AbstractConnection connection, Connector connector, EndPoint endPoint) void
ForwardedRequestCustomizer.customize
(Connector connector, HttpConfiguration config, Request request) void
HostHeaderCustomizer.customize
(Connector connector, HttpConfiguration channelConfig, Request request) void
HttpConfiguration.Customizer.customize
(Connector connector, HttpConfiguration channelConfig, Request request) void
ProxyCustomizer.customize
(Connector connector, HttpConfiguration channelConfig, Request request) void
SecureRequestCustomizer.customize
(Connector connector, HttpConfiguration channelConfig, Request request) private static ConnectionFactory
ProxyConnectionFactory.findNextConnectionFactory
(String nextProtocol, Connector connector, String currentProtocol, EndPoint endp) protected String
AbstractConnectionFactory.findNextProtocol
(Connector connector) protected static String
AbstractConnectionFactory.findNextProtocol
(Connector connector, String currentProtocol) private X509Certificate[]
SecureRequestCustomizer.getCertChain
(Connector connector, SSLSession sslSession) ConnectionFactory.newConnection
(Connector connector, EndPoint endPoint) Creates a newConnection
with the given parametersDetectorConnectionFactory.newConnection
(Connector connector, EndPoint endPoint) HttpConnectionFactory.newConnection
(Connector connector, EndPoint endPoint) NegotiatingServerConnectionFactory.newConnection
(Connector connector, EndPoint endPoint) ProxyConnectionFactory.ProxyV1ConnectionFactory.newConnection
(Connector connector, EndPoint endp) ProxyConnectionFactory.ProxyV2ConnectionFactory.newConnection
(Connector connector, EndPoint endp) SslConnectionFactory.newConnection
(Connector connector, EndPoint endPoint) protected abstract AbstractConnection
NegotiatingServerConnectionFactory.newServerConnection
(Connector connector, EndPoint endPoint, SSLEngine engine, List<String> protocols, String defaultProtocol) protected SslConnection
SslConnectionFactory.newSslConnection
(Connector connector, EndPoint endPoint, SSLEngine engine) protected void
DetectorConnectionFactory.nextProtocol
(Connector connector, EndPoint endPoint, ByteBuffer buffer) Callback method called when detection was unsuccessful.protected void
OptionalSslConnectionFactory.nextProtocol
(Connector connector, EndPoint endPoint, ByteBuffer buffer) Deprecated.Callback method invoked when the detected bytes are not TLS.void
Server.removeConnector
(Connector connector) Convenience method which callsServer.getConnectors()
andServer.setConnectors(Connector[])
to remove a connector.void
Server.setConnectors
(Connector[] connectors) Set the connectors for this server.ConnectionFactory.Upgrading.upgradeConnection
(Connector connector, EndPoint endPoint, MetaData.Request upgradeRequest, HttpFields responseFields) Create a connection for an upgrade request.protected static void
DetectorConnectionFactory.upgradeToConnectionFactory
(ConnectionFactory connectionFactory, Connector connector, EndPoint endPoint) Utility method that performs an upgrade to the specified connection factory, disposing of the given resources when needed.Method parameters in org.eclipse.jetty.server with type arguments of type ConnectorModifier and TypeMethodDescriptionvoid
LowResourceMonitor.setMonitoredConnectors
(Collection<Connector> monitoredConnectors) Constructors in org.eclipse.jetty.server with parameters of type ConnectorModifierConstructorDescriptionAcceptRateLimit
(int limit, long period, TimeUnit units, Connector... connectors) ConnectionLimit
(int maxConnections, Connector... connectors) private
DetectorConnection
(EndPoint endp, Connector connector) HttpChannel
(Connector connector, HttpConfiguration configuration, EndPoint endPoint, HttpTransport transport) HttpChannelOverHttp
(HttpConnection httpConnection, Connector connector, HttpConfiguration config, EndPoint endPoint, HttpTransport transport) HttpConnection
(HttpConfiguration config, Connector connector, EndPoint endPoint, HttpCompliance compliance, boolean recordComplianceViolations) protected
NegotiatingServerConnection
(Connector connector, EndPoint endPoint, SSLEngine engine, List<String> protocols, String defaultProtocol) private
ProxyProtocolV1Connection
(EndPoint endp, Connector connector, ConnectionFactory next) protected
ProxyProtocolV2Connection
(EndPoint endp, Connector connector, ConnectionFactory next) -
Uses of Connector in org.eclipse.jetty.server.nio
Classes in org.eclipse.jetty.server.nio that implement Connector -
Uses of Connector in org.eclipse.jetty.servlet
Fields in org.eclipse.jetty.servlet with type parameters of type Connector
NetworkTrafficServerConnector
instead.