Uses of Enum Class
org.forgerock.http.routing.RoutingMode
Packages that use 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
Methods in org.forgerock.http.routing that return RoutingModeModifier 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.Methods in org.forgerock.http.routing with parameters of type RoutingModeModifier 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
Methods in org.forgerock.json.resource with parameters of type RoutingModeModifier 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
Methods in org.forgerock.services.routing with parameters of type RoutingModeModifier and TypeMethodDescriptionprotected abstract RouteMatcher<R>
AbstractRouter.uriMatcher
(RoutingMode mode, String pattern) Create a URI matcher suitable for the request type<R>
.