Searched defs:routes (Results 1 - 2 of 2) sorted by relevance

/forgerock/openidm-v4/openidm-router/src/main/java/org/forgerock/openidm/router/
H A DRouteBuilder.java49 private final Set<RouteItem> routes; field in class:RouteBuilder
58 this.routes = new HashSet<>();
62 this.routes = initial;
129 routes.add(new RouteItem(collection, singleton, handler, mode, uriTemplate));
141 return !routes.isEmpty();
155 return new RouteBuilder(Collections.unmodifiableSet(buildNext().routes));
159 if (routes.isEmpty()) {
165 if (routes.size() == 1) {
166 String template = routes.iterator().next().uriTemplate.toString();
169 } else if (routes
[all...]
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsRouteTree.java57 * offering a flat entry point to add and remove routes and services.
135 * @param filter The filter to wrap around all routes.
175 * Adds a new route to this router for the provided request handler. New routes may be added
202 * Removes one or more routes from this router. Routes may be removed while this router is
205 * @param routes The routes to be removed.
206 * @return {@code true} if at least one of the routes was found and removed.
208 final boolean removeRoute(RouteMatcher<Request>... routes) { argument
209 return router.removeRoute(routes);

Completed in 60 milliseconds