Uses of Interface
org.eclipse.jetty.util.component.Container
Packages that use Container
Package
Description
Jetty Client : Implementation and Core Classes
This package provides APIs, utility classes and an implementation of an asynchronous HTTP client.
Jetty IO : Core classes for Jetty IO subsystem
Jetty Jaas : Support for Jaas
Jetty JMX : Integration for JMX in Jetty
Jetty Security : Modular Support for Security in Jetty
Jetty Server : Core Server API
Jetty Server : Core Handler API
Jetty GZIP Handler
Jetty Server : Core Server Connector
Jetty Server : Session Management Implementations
Jetty Server : Modular Servlet Integration
Jetty Util : Jetty Lifecycle Management
Jetty Util : Common SSL Utility Classes
Jetty Util : Common ThreadPool Utilities
Jetty Util : Modular Web Application Support
-
Uses of Container in org.eclipse.jetty.client
Classes in org.eclipse.jetty.client that implement ContainerModifier and TypeClassDescriptionclass
class
protected class
class
class
class
HttpClient
provides an efficient, asynchronous, non-blocking implementation to perform HTTP requests to a server through a simple API that offers also blocking semantic.class
class
class
class
class
class
AConnectionPool
that provides connections randomly among the ones that are available.class
AConnectionPool
that attempts to provide connections using a round-robin algorithm.class
A connection pool that validates connections before making them available for use. -
Uses of Container in org.eclipse.jetty.client.http
Classes in org.eclipse.jetty.client.http that implement Container -
Uses of Container in org.eclipse.jetty.io
Classes in org.eclipse.jetty.io that implement ContainerModifier and TypeClassDescriptionclass
class
ManagedSelector
wraps aSelector
simplifying non-blocking operations on channels.class
SelectorManager
manages a number ofManagedSelector
s that simplify the non-blocking primitives provided by the JVM via thejava.nio
package. -
Uses of Container in org.eclipse.jetty.jaas
Classes in org.eclipse.jetty.jaas that implement ContainerModifier and TypeClassDescriptionclass
JAASLoginService Implementation of jetty's LoginService that works with JAAS for authorization and authentication. -
Uses of Container in org.eclipse.jetty.jmx
Fields in org.eclipse.jetty.jmx declared as ContainerFields in org.eclipse.jetty.jmx with type parameters of type ContainerModifier and TypeFieldDescriptionprivate final ConcurrentMap<Object,
Container> MBeanContainer._beans
Methods in org.eclipse.jetty.jmx with parameters of type Container -
Uses of Container in org.eclipse.jetty.security
Classes in org.eclipse.jetty.security that implement ContainerModifier and TypeClassDescriptionclass
AbstractLoginServiceclass
A configurable (as opposed to using system properties) SPNEGO LoginService.class
ConstraintSecurityHandlerclass
Properties User Realm.class
HashMapped User Realm with JDBC as data source.class
Abstract SecurityHandler. -
Uses of Container in org.eclipse.jetty.server
Subinterfaces of Container in org.eclipse.jetty.serverModifier and TypeInterfaceDescriptioninterface
AConnector
accept connections and data from remote peers, and allows applications to send data to remote peers, by setting up the machinery needed to handle such tasks.interface
AConnector
for TCP/IP network connectorsClasses in org.eclipse.jetty.server that implement ContainerModifier and TypeClassDescriptionclass
Provides the common handling forConnectionFactory
implementations including:class
An abstract implementation ofConnector
that provides aConnectionFactory
mechanism for creatingConnection
instances for various protocols (HTTP, SSL, etc).class
Deprecated.class
An abstract Network Connector.class
Deprecated.useCustomRequestLog
given format stringCustomRequestLog.EXTENDED_NCSA_FORMAT
with anAsyncRequestLogWriter
class
A flexible RequestLog, which produces log strings in a customizable format.class
AConnectionFactory
combining multipleConnectionFactory.Detecting
instances that will upgrade to the first one recognizing the bytes in the buffer.class
A Connection Factory for HTTP Connections.class
A local connector, mostly for testing purposes.class
A monitor for low resources, low resources can be detected by:ThreadPool.isLowOnThreads()
ifConnector.getExecutor()
is an instance ofThreadPool
andLowResourceMonitor.setMonitorThreads(boolean)
is true. IfLowResourceMonitor.setMaxMemory(long)
is non zero then low resources is detected if the JVMsRuntime
instance hasRuntime.totalMemory()
minusRuntime.freeMemory()
greater thanLowResourceMonitor.getMaxMemory()
IfLowResourceMonitor.setMaxConnections(int)
is non zero then low resources is detected if the total number of connections exceedsLowResourceMonitor.getMaxConnections()
.class
Deprecated.useCustomRequestLog
given format stringCustomRequestLog.EXTENDED_NCSA_FORMAT
with aRequestLogWriter
class
class
A specialized version ofServerConnector
that supportsNetworkTrafficListener
s.class
Deprecated.UseDetectorConnectionFactory
with aSslConnectionFactory
instead.class
ConnectionFactory for the PROXY Protocol.private static class
private static class
class
Jetty HTTP Servlet Server.class
ThisConnector
implementation is the primary connector for the Jetty server over TCP/IP.protected class
class
Deprecated.useCustomRequestLog
given format stringCustomRequestLog.EXTENDED_NCSA_FORMAT
with anSlf4jRequestLogWriter
class
-
Uses of Container in org.eclipse.jetty.server.handler
Classes in org.eclipse.jetty.server.handler that implement ContainerModifier and TypeClassDescriptionclass
AbstractHandler.static class
Deprecated.This class is no longer required as ERROR dispatch is only done if there is an error page target.class
Abstract Handler Container.class
A handler wrapper that provides the framework to asynchronously delay the handling of a request.class
Buffered Response Handlerclass
ContextHandler.class
ThisHandlerCollection
is creates a Map of contexts to it's contained handlers based on the context path and virtual hosts of any containedContextHandler
s.class
Deprecated.UseDebugListener
class
Default Handler.class
Handler for Error pages An ErrorHandler is registered withContextHandler.setErrorHandler(ErrorHandler)
orServer.setErrorHandler(ErrorHandler)
.class
A collection of handlers.class
HandlerList.class
AHandlerWrapper
acts as aHandler
but delegates thehandle
method andlife cycle
events to a delegate.class
AHandlerContainer
that allows a hot swap of a wrapped handler.class
Handler to adjust the idle timeout of requests while dispatched.class
InetAddress Access Handlerclass
Deprecated.Use @InetAccessHandler
.class
Moved ContextHandler.private class
class
This handler provides an alternate way (other thanServer.setRequestLog(RequestLog)
) to log request, that can be applied to a particular handler (eg context).class
Resource Handler.class
ScopedHandler.class
Secured Redirect Handlerclass
A handler that shuts the server down on a valid request.class
class
Handler to limit the threads per IP address for DOS protection -
Uses of Container in org.eclipse.jetty.server.handler.gzip
Classes in org.eclipse.jetty.server.handler.gzip that implement ContainerModifier and TypeClassDescriptionclass
A Handler that can dynamically GZIP uncompress requests, and compress responses. -
Uses of Container in org.eclipse.jetty.server.nio
Classes in org.eclipse.jetty.server.nio that implement Container -
Uses of Container in org.eclipse.jetty.server.session
Classes in org.eclipse.jetty.server.session that implement ContainerModifier and TypeClassDescriptionclass
AbstractSessionCache A base implementation of theSessionCache
interface for managing a set of Session objects pertaining to a context in memory.class
AbstractSessionDataStoreclass
CachingSessionDataStore A SessionDataStore is a mechanism for (persistently) storing data associated with sessions.class
DefaultSessionCache A session store that keeps its sessions in memory in a hashmapclass
DefaultSessionIdManager Manages session ids to ensure each session id within a context is unique, and that session ids can be shared across contexts (but not session contents).class
FileSessionDataStore A file-based store of session data.class
JDBCSessionDataStore Session data stored in databaseclass
NullSessionCache Does not actually cache any Session objects.class
NullSessionDataStore Does not actually store anything, useful for testing.class
SessionHandler. -
Uses of Container in org.eclipse.jetty.servlet
Classes in org.eclipse.jetty.servlet that implement ContainerModifier and TypeClassDescriptionclass
An ErrorHandler that maps exceptions and status codes to URIs for dispatch using the internal ERROR style of dispatch.class
Servlet Context.class
Servlet HttpHandler. -
Uses of Container in org.eclipse.jetty.util.component
Classes in org.eclipse.jetty.util.component that implement ContainerModifier and TypeClassDescriptionclass
An Attributes implementation that holds it's values in an immutableContainerLifeCycle
class
A ContainerLifeCycle is anLifeCycle
implementation for a collection of contained beans.Methods in org.eclipse.jetty.util.component with parameters of type ContainerModifier and TypeMethodDescriptionvoid
void
Container.Listener.beanRemoved
(Container parent, Object child) static void
Dumpable.dumpContainer
(Appendable out, String indent, Container object, boolean last) -
Uses of Container in org.eclipse.jetty.util.ssl
Classes in org.eclipse.jetty.util.ssl that implement ContainerModifier and TypeClassDescriptionclass
TheKeyStoreScanner
is used to monitor the KeyStore file used by theSslContextFactory
. -
Uses of Container in org.eclipse.jetty.util.thread
Classes in org.eclipse.jetty.util.thread that implement ContainerModifier and TypeClassDescriptionclass
Deprecated.class
AThreadPool.SizedThreadPool
wrapper aroundThreadPoolExecutor
.class
AQueuedThreadPool
subclass that monitors its own activity by recording queue and task statistics.class
A thread pool with a queue of jobs to execute. -
Uses of Container in org.eclipse.jetty.util.thread.strategy
Classes in org.eclipse.jetty.util.thread.strategy that implement ContainerModifier and TypeClassDescriptionclass
A strategy where the thread that produces will run the resulting task if it is possible to do so without thread starvation. -
Uses of Container in org.eclipse.jetty.webapp
Classes in org.eclipse.jetty.webapp that implement Container
CustomRequestLog
given format stringCustomRequestLog.EXTENDED_NCSA_FORMAT
with aRequestLog.Writer