Spec-Zone .ru
спецификации, руководства, описания, API

Java HTTP Server

Uses of Interface
com.sun.net.httpserver.HttpHandler

Packages that use HttpHandler
com.sun.net.httpserver 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 HttpHandler
abstract  HttpHandler HttpContext.getHandler()
          returns the handler for this context
 

Methods in com.sun.net.httpserver with parameters of type HttpHandler
abstract  HttpContext HttpServer.createContext(String path, HttpHandler handler)
          Creates a HttpContext.
abstract  void HttpContext.setHandler(HttpHandler h)
          Sets the handler for this context, if not already set.
 

Constructors in com.sun.net.httpserver with parameters of type HttpHandler
Filter.Chain(List<Filter> filters, HttpHandler handler)
           
 


Java HTTP Server