Package org.eclipse.jetty.server.handler
Class AbstractHandlerContainer
java.lang.Object
org.eclipse.jetty.util.component.AbstractLifeCycle
org.eclipse.jetty.util.component.ContainerLifeCycle
org.eclipse.jetty.server.handler.AbstractHandler
org.eclipse.jetty.server.handler.AbstractHandlerContainer
- All Implemented Interfaces:
Handler,HandlerContainer,Container,Destroyable,Dumpable,Dumpable.DumpableContainer,LifeCycle
- Direct Known Subclasses:
HandlerCollection,HandlerWrapper,HotSwapHandler
Abstract Handler Container.
This is the base class for handlers that may contain other handlers.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.eclipse.jetty.server.handler.AbstractHandler
AbstractHandler.ErrorDispatchHandlerNested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListenerNested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Container
Container.InheritedListener, Container.ListenerNested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainerNested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voiddoShutdown(List<Future<Void>> futures) Shutdown nested Gracefule handlersprotected voidexpandChildren(List<Handler> list, Class<?> byClass) protected voidexpandHandler(Handler handler, List<Handler> list, Class<?> byClass) static <T extends HandlerContainer>
TfindContainerOf(HandlerContainer root, Class<T> type, Handler handler) <T extends Handler>
TgetChildHandlerByClass(Class<T> byclass) Handler[]Handler[]getChildHandlersByClass(Class<?> byclass) voidMethods inherited from class org.eclipse.jetty.server.handler.AbstractHandler
destroy, doError, doStart, doStop, getServer, handleMethods inherited from class org.eclipse.jetty.util.component.ContainerLifeCycle
addBean, addBean, addEventListener, addManaged, contains, dump, dump, dump, dump, dump, dumpBeans, dumpObject, dumpObjects, dumpStdErr, dumpThis, getBean, getBeans, getBeans, getContainedBeans, getContainedBeans, isAuto, isManaged, isUnmanaged, manage, removeBean, removeBeans, removeEventListener, setBeans, setStopTimeout, start, stop, unmanage, updateBean, updateBean, updateBeansMethods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.eclipse.jetty.util.component.Dumpable.DumpableContainer
isDumpableMethods inherited from interface org.eclipse.jetty.server.HandlerContainer
getHandlersMethods inherited from interface org.eclipse.jetty.util.component.LifeCycle
addLifeCycleListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop
-
Field Details
-
LOG
-
-
Constructor Details
-
AbstractHandlerContainer
public AbstractHandlerContainer()
-
-
Method Details
-
getChildHandlers
- Specified by:
getChildHandlersin interfaceHandlerContainer- Returns:
- array of all handlers contained by this handler and it's children
-
getChildHandlersByClass
- Specified by:
getChildHandlersByClassin interfaceHandlerContainer- Parameters:
byclass- the child handler class to get- Returns:
- array of all handlers contained by this handler and it's children of the passed type.
-
getChildHandlerByClass
- Specified by:
getChildHandlerByClassin interfaceHandlerContainer- Type Parameters:
T- the type of handler- Parameters:
byclass- the child handler class to get- Returns:
- first handler of all handlers contained by this handler and it's children of the passed type.
-
expandChildren
-
expandHandler
-
findContainerOf
public static <T extends HandlerContainer> T findContainerOf(HandlerContainer root, Class<T> type, Handler handler) -
setServer
- Specified by:
setServerin interfaceHandler- Overrides:
setServerin classAbstractHandler
-
doShutdown
Shutdown nested Gracefule handlers- Parameters:
futures- A list of Futures which must also be waited on for the shutdown (or null) returns A MultiException to which any failures are added or null- Throws:
MultiException
-