Package io.undertow.server
Interface HttpHandler
-
- All Known Implementing Classes:
AbstractConfidentialityHandler,AbstractSecurityContextAssociationHandler,AccessControlListHandler,AccessLogHandler,AllowedMethodsHandler,AttachmentHandler,AuthenticationCallHandler,AuthenticationConstraintHandler,AuthenticationMechanismsHandler,BlockingHandler,ByteRangeHandler,CachedAuthenticatedSessionHandler,CacheHandler,CanonicalPathHandler,ChannelUpgradeHandler,ConfiguredPushHandler,ConnectHandler,CrawlerSessionManagerHandler,DateHandler,DisableCacheHandler,DisallowedMethodsHandler,EagerFormParsingHandler,EncodingHandler,ExceptionHandler,FileErrorPageHandler,FilterHandler,GracefulShutdownHandler,Http2UpgradeHandler,HttpContinueAcceptingHandler,HttpContinueReadHandler,HttpTraceHandler,IPAddressAccessControlHandler,JDBCLogHandler,JvmRouteHandler,LearningPushHandler,LocalNameResolvingHandler,MarkSecureHandler,MetricsHandler,NameVirtualHostHandler,NotificationReceiverHandler,OriginHandler,PathHandler,PathSeparatorHandler,PathTemplateHandler,PeerNameResolvingHandler,PredicateContextHandler,PredicateHandler,PredicatesHandler,ProxyHandler,ProxyPeerAddressHandler,RedirectHandler,RequestBufferingHandler,RequestDumpingHandler,RequestLimitingHandler,ResourceHandler,ResponseCodeHandler,ResponseRateLimitingHandler,RewriteHandler,RoutingHandler,SecurityInitialHandler,ServerSentEventHandler,ServletAuthenticationCallHandler,ServletAuthenticationConstraintHandler,ServletConfidentialityConstraintHandler,ServletDispatchingHandler,ServletHandler,ServletInitialHandler,ServletSecurityConstraintHandler,ServletSecurityRoleHandler,SessionAttachmentHandler,SessionRestoringHandler,SetAttributeHandler,SetHeaderHandler,SimpleErrorPageHandler,SinglePortConfidentialityHandler,SSLHeaderHandler,SSLInformationAssociationHandler,StuckThreadDetectionHandler,URLDecodingHandler,WebSocketProtocolHandshakeHandler
public interface HttpHandlerA handler for an HTTP request. The request handler must eventually either call another handler or end the exchange.- Author:
- David M. Lloyd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleRequest(HttpServerExchange exchange)Handle the request.
-
-
-
Method Detail
-
handleRequest
void handleRequest(HttpServerExchange exchange) throws Exception
Handle the request.- Parameters:
exchange- the HTTP request/response exchange- Throws:
Exception
-
-