Uses of Enum Class
org.forgerock.http.routing.RoutingMode
Package
Description
Provides routing functionality for HTTP requests.
Classes and interfaces for core types including connections, request
handlers, resources, and their exceptions.
This package provides a simple framework for implementing routers.
-
Uses of RoutingMode in org.forgerock.http.routing
Modifier and TypeMethodDescriptionstatic RoutingMode
Returns the enum constant of this class with the specified name.static RoutingMode[]
RoutingMode.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionstatic RouteMatcher<Request>
RouteMatchers.requestUriMatcher
(RoutingMode mode, String template) Creates aRouteMatcher
instance that matchesRequest
s with the provided mode and template.static RouteMatcher<List<String>>
RouteMatchers.uriMatcher
(RoutingMode mode, String template) Creates aRouteMatcher
instance that matchesResourcePath
s with the provided mode and template.protected RouteMatcher<Request>
Router.uriMatcher
(RoutingMode mode, String pattern) -
Uses of RoutingMode in org.forgerock.json.resource
Modifier and TypeMethodDescriptionRouter.addRoute
(RoutingMode mode, Router.UriTemplate uriTemplate, RequestHandler handler) Adds a new route to this router for the provided request handler.static RouteMatcher<Request>
RouteMatchers.requestUriMatcher
(RoutingMode mode, String template) Creates aRouteMatcher
instance that matchesRequest
s with the provided mode and template.protected RouteMatcher<Request>
Router.uriMatcher
(RoutingMode mode, String pattern) -
Uses of RoutingMode in org.forgerock.services.routing
Modifier and TypeMethodDescriptionprotected abstract RouteMatcher<R>
AbstractRouter.uriMatcher
(RoutingMode mode, String pattern) Create a URI matcher suitable for the request type<R>
.