Uses of Class
com.sun.net.httpserver.Filter
Packages that use Filter
Package
Description
Provides a simple high-level Http server API, which can be used to build
embedded HTTP servers.
-
Uses of Filter in com.sun.net.httpserver
Methods in com.sun.net.httpserver that return FilterModifier and TypeMethodDescriptionstatic Filter
Filter.afterHandler
(String description, Consumer<HttpExchange> operation) Returns a post-processingFilter
with the given description and operation.static Filter
Filter.beforeHandler
(String description, Consumer<HttpExchange> operation) Returns a pre-processingFilter
with the given description and operation.Methods in com.sun.net.httpserver that return types with arguments of type FilterConstructor parameters in com.sun.net.httpserver with type arguments of type FilterModifierConstructorDescriptionChain
(List<Filter> filters, HttpHandler handler) Creates aChain
instance with given filters and handler.