Uses of Interface
com.sun.net.httpserver.HttpHandler
Packages that use HttpHandler
Package
Description
Provides a simple high-level Http server API, which can be used to build
embedded HTTP servers.
-
Uses of HttpHandler in com.sun.net.httpserver
Methods in com.sun.net.httpserver that return HttpHandlerModifier and TypeMethodDescriptionabstract HttpHandler
HttpContext.getHandler()
Returns the handler for this context.Methods in com.sun.net.httpserver with parameters of type HttpHandlerModifier and TypeMethodDescriptionabstract HttpContext
HttpServer.createContext
(String path, HttpHandler handler) Creates aHttpContext
.abstract void
HttpContext.setHandler
(HttpHandler handler) Sets the handler for this context, if not already set.Constructors in com.sun.net.httpserver with parameters of type HttpHandlerModifierConstructorDescriptionChain
(List<Filter> filters, HttpHandler handler) Creates aChain
instance with given filters and handler.