Interface | Description |
---|---|
HttpHandler |
A handler which is invoked to process HTTP exchanges.
|
Class | Description |
---|---|
Authenticator |
Authenticator represents an implementation of an HTTP authentication
mechanism.
|
Authenticator.Failure |
Indicates an authentication failure.
|
Authenticator.Result |
Base class for return type from authenticate() method
|
Authenticator.Retry |
Indicates an authentication must be retried.
|
Authenticator.Success |
Indicates an authentication has succeeded and the
authenticated user principal can be acquired by calling
getPrincipal().
|
BasicAuthenticator |
BasicAuthenticator provides an implementation of HTTP Basic
authentication.
|
Filter |
A filter used to pre- and post-process incoming requests.
|
Filter.Chain |
a chain of filters associated with a HttpServer.
|
Headers | |
HttpContext |
HttpContext represents a mapping between the root URI path of an application
to a
HttpHandler which is invoked to handle requests destined
for that path on the associated HttpServer or HttpsServer. |
HttpExchange |
This class encapsulates a HTTP request received and a
response to be generated in one exchange.
|
HttpPrincipal |
Represents a user authenticated by HTTP Basic or Digest
authentication.
|
HttpsConfigurator |
This class is used to configure the https parameters for each incoming
https connection on a HttpsServer.
|
HttpServer |
This class implements a simple HTTP server.
|
HttpsExchange |
This class encapsulates a HTTPS request received and a
response to be generated in one exchange and defines
the extensions to HttpExchange that are specific to the HTTPS protocol.
|
HttpsParameters |
Represents the set of parameters for each https
connection negotiated with clients.
|
HttpsServer |
This class is an extension of
HttpServer which provides
support for HTTPS. |
Class | Description |
---|---|
HttpServerProvider |
Service provider class for HttpServer.
|
Copyright © 2005, 2014, Oracle and/or its affiliates. All rights reserved.