Uses of Class
io.undertow.server.handlers.PathHandler
-
Packages that use PathHandler Package Description io.undertow io.undertow.server.handlers -
-
Uses of PathHandler in io.undertow
Methods in io.undertow that return PathHandler Modifier and Type Method Description static 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 PathHandler Modifier and Type Method Description PathHandlerPathHandler. addExactPath(String path, HttpHandler handler)If the request path is exactly equal to the given path, run the handler.PathHandlerPathHandler. addPath(String path, HttpHandler handler)Deprecated, for removal: This API element is subject to removal in a future version.Superseded byaddPrefixPath(String, io.undertow.server.HttpHandler).PathHandlerPathHandler. addPrefixPath(String path, HttpHandler handler)Adds a path prefix and a handler for that path.PathHandlerPathHandler. clearPaths()PathHandlerPathHandler. removeExactPath(String path)PathHandlerPathHandler. removePath(String path)Deprecated.PathHandlerPathHandler. removePrefixPath(String path)
-