Uses of Class
com.sun.net.httpserver.HttpServer

Packages that use HttpServer
com.sun.net.httpserver Provides a simple high-level Http server API, which can be used to build embedded HTTP servers. 
com.sun.net.httpserver.spi Provides a pluggable service provider interface, which allows the HTTP server implementation to be replaced with other implementations. 
sun.net.httpserver   
 

Uses of HttpServer in com.sun.net.httpserver
 

Subclasses of HttpServer in com.sun.net.httpserver
 class HttpsServer
          This class is an extension of HttpServer which provides support for HTTPS.
 

Methods in com.sun.net.httpserver that return HttpServer
static HttpServer HttpServer.create()
          creates a HttpServer instance which is initially not bound to any local address/port.
static HttpServer HttpServer.create(java.net.InetSocketAddress addr, int backlog)
          Create a HttpServer instance which will bind to the specified InetSocketAddress (IP address and port number) A maximum backlog can also be specified.
abstract  HttpServer HttpContext.getServer()
          returns the server this context was created with
 

Uses of HttpServer in com.sun.net.httpserver.spi
 

Methods in com.sun.net.httpserver.spi that return HttpServer
abstract  HttpServer HttpServerProvider.createHttpServer(java.net.InetSocketAddress addr, int backlog)
          creates a HttpServer from this provider
 

Uses of HttpServer in sun.net.httpserver
 

Subclasses of HttpServer in sun.net.httpserver
 class HttpServerImpl
           
 class HttpsServerImpl
           
 

Methods in sun.net.httpserver that return HttpServer
 HttpServer DefaultHttpServerProvider.createHttpServer(java.net.InetSocketAddress addr, int backlog)
           
 



Copyright © 2005-2011 Oracle Corporation. All Rights Reserved.