Uses of Class
org.forgerock.http.routing.RoutingMode
-
Packages that use RoutingMode Package Description org.forgerock.http.routing Provides routing functionality for HTTP requests.org.forgerock.json.resource Classes and interfaces for core types including connections, request handlers, resources, and their exceptions.org.forgerock.services.routing 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 RoutingMode Modifier and Type Method Description static RoutingMode
RoutingMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static RoutingMode[]
RoutingMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.forgerock.http.routing with parameters of type RoutingMode Modifier and Type Method Description static 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 RoutingMode Modifier and Type Method Description RouteMatcher<Request>
Router. 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 RoutingMode Modifier and Type Method Description protected abstract RouteMatcher<R>
AbstractRouter. uriMatcher(RoutingMode mode, String pattern)
Create a URI matcher suitable for the request type<R>
.
-