Uses of Class
io.undertow.server.handlers.PathHandler
Packages that use PathHandler
-
Uses of PathHandler in io.undertow
Methods in io.undertow that return PathHandlerModifier and TypeMethodDescriptionstatic PathHandlerHandlers.path()Creates a new path handlerstatic PathHandlerHandlers.path(HttpHandler defaultHandler) Creates a new path handler, with the default handler specified -
Uses of PathHandler in io.undertow.server.handlers
Methods in io.undertow.server.handlers that return PathHandlerModifier and TypeMethodDescriptionPathHandler.addExactPath(String path, HttpHandler handler) If the request path is exactly equal to the given path, run the handler.PathHandler.addPath(String path, HttpHandler handler) Deprecated.PathHandler.addPrefixPath(String path, HttpHandler handler) Adds a path prefix and a handler for that path.PathHandler.clearPaths()PathHandler.removeExactPath(String path) PathHandler.removePath(String path) Deprecated.PathHandler.removePrefixPath(String path)
addPrefixPath(String, io.undertow.server.HttpHandler).