| Package | Description | 
|---|---|
| org.apache.hc.core5.http.impl.bootstrap | HTTP/1.1 requester and server bootstrap. | 
| Modifier and Type | Method and Description | 
|---|---|
| ServerBootstrap | ServerBootstrap. addFilterAfter(String existing,
              String name,
              HttpFilterHandler filterHandler)Adds the filter after the filter with the given name. | 
| ServerBootstrap | ServerBootstrap. addFilterBefore(String existing,
               String name,
               HttpFilterHandler filterHandler)Adds the filter before the filter with the given name. | 
| ServerBootstrap | ServerBootstrap. addFilterFirst(String name,
              HttpFilterHandler filterHandler)Add an filter to the head of the processing list. | 
| ServerBootstrap | ServerBootstrap. addFilterLast(String name,
             HttpFilterHandler filterHandler)Add an filter to the tail of the processing list. | 
| static ServerBootstrap | ServerBootstrap. bootstrap() | 
| ServerBootstrap | ServerBootstrap. register(String uriPattern,
        HttpRequestHandler requestHandler)Registers the given  HttpRequestHandleras a default handler for URIs
 matching the given pattern. | 
| ServerBootstrap | ServerBootstrap. registerVirtual(String hostname,
               String uriPattern,
               HttpRequestHandler requestHandler)Registers the given  HttpRequestHandleras a handler for URIs
 matching the given host and the pattern. | 
| ServerBootstrap | ServerBootstrap. replaceFilter(String existing,
             HttpFilterHandler filterHandler)Replace an existing filter with the given name with new filter. | 
| ServerBootstrap | ServerBootstrap. setCanonicalHostName(String canonicalHostName)Sets canonical name (fully qualified domain name) of the server. | 
| ServerBootstrap | ServerBootstrap. setCharCodingConfig(CharCodingConfig charCodingConfig)Sets connection configuration. | 
| ServerBootstrap | ServerBootstrap. setConnectionFactory(HttpConnectionFactory<? extends DefaultBHttpServerConnection> connectionFactory)Assigns  HttpConnectionFactoryinstance. | 
| ServerBootstrap | ServerBootstrap. setConnectionReuseStrategy(ConnectionReuseStrategy connStrategy)Assigns  ConnectionReuseStrategyinstance. | 
| ServerBootstrap | ServerBootstrap. setExceptionListener(ExceptionListener exceptionListener)Assigns  ExceptionListenerinstance. | 
| ServerBootstrap | ServerBootstrap. setHttp1Config(Http1Config http1Config)Sets connection configuration. | 
| ServerBootstrap | ServerBootstrap. setHttpProcessor(HttpProcessor httpProcessor)Assigns  HttpProcessorinstance. | 
| ServerBootstrap | ServerBootstrap. setListenerPort(int listenerPort)Sets listener port number. | 
| ServerBootstrap | ServerBootstrap. setLocalAddress(InetAddress localAddress)Assigns local interface for the listener. | 
| ServerBootstrap | ServerBootstrap. setLookupRegistry(LookupRegistry<HttpRequestHandler> lookupRegistry)Assigns  LookupRegistryinstance. | 
| ServerBootstrap | ServerBootstrap. setResponseFactory(HttpResponseFactory<ClassicHttpResponse> responseFactory)Assigns  HttpResponseFactoryinstance. | 
| ServerBootstrap | ServerBootstrap. setServerSocketFactory(ServerSocketFactory serverSocketFactory)Assigns  ServerSocketFactoryinstance. | 
| ServerBootstrap | ServerBootstrap. setSocketConfig(SocketConfig socketConfig)Sets socket configuration. | 
| ServerBootstrap | ServerBootstrap. setSslContext(SSLContext sslContext)Assigns  SSLContextinstance. | 
| ServerBootstrap | ServerBootstrap. setSslSetupHandler(Callback<SSLParameters> sslSetupHandler)Assigns  CallbackforSSLParameters. | 
| ServerBootstrap | ServerBootstrap. setStreamListener(Http1StreamListener streamListener)Assigns  ExceptionListenerinstance. | 
Copyright © 2005–2022 The Apache Software Foundation. All rights reserved.