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

Java HTTP Server

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

Packages that use Authenticator
com.sun.net.httpserver Provides a simple high-level Http server API, which can be used to build embedded HTTP servers. 
 

Uses of Authenticator in com.sun.net.httpserver
 

Subclasses of Authenticator in com.sun.net.httpserver
 class BasicAuthenticator
          BasicAuthenticator provides an implementation of HTTP Basic authentication.
 

Methods in com.sun.net.httpserver that return Authenticator
abstract  Authenticator HttpContext.getAuthenticator()
          Returns the currently set Authenticator for this context if one exists.
abstract  Authenticator HttpContext.setAuthenticator(Authenticator auth)
          Sets the Authenticator for this HttpContext.
 

Methods in com.sun.net.httpserver with parameters of type Authenticator
abstract  Authenticator HttpContext.setAuthenticator(Authenticator auth)
          Sets the Authenticator for this HttpContext.
 


Java HTTP Server