Uses of Class
org.forgerock.util.Pair
-
Packages that use Pair Package Description org.forgerock.http.routing Provides routing functionality for HTTP requests.org.forgerock.json.jose.jwk.store This package contains classes to manage a JWKs URI.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.org.forgerock.util Provides common interfaces and classes. -
-
Uses of Pair in org.forgerock.http.routing
Methods in org.forgerock.http.routing that return Pair Modifier and Type Method Description protected Pair<RouteMatcher<Request>,Handler>
Router. getSelfApiHandler()
-
Uses of Pair in org.forgerock.json.jose.jwk.store
Methods in org.forgerock.json.jose.jwk.store that return Pair Modifier and Type Method Description Pair<JWKSet,Instant>
JwksStore. getLastLoadedJwkSet()
Returns the last successfully loaded JWK Set together with the time at which it was last fetched. -
Uses of Pair in org.forgerock.json.resource
Methods in org.forgerock.json.resource that return Pair Modifier and Type Method Description protected Pair<RouteMatcher<Request>,RequestHandler>
Router. getSelfApiHandler()
-
Uses of Pair in org.forgerock.services.routing
Methods in org.forgerock.services.routing that return Pair Modifier and Type Method Description protected Pair<Context,H>
AbstractRouter. getBestApiRoute(Context context, R request)
Get the best route for an API request.protected Pair<Context,H>
AbstractRouter. getBestRoute(Context context, R request)
Finds the best route that matches the given request based on the route matchers of the registered routes.protected abstract Pair<RouteMatcher<R>,H>
AbstractRouter. getSelfApiHandler()
Return aDescribable
handler that returns thisAbstractRouter
's internal api description from theDescribable.handleApiRequest(Context, Object)
method. -
Uses of Pair in org.forgerock.util
Fields in org.forgerock.util declared as Pair Modifier and Type Field Description static Pair<?,?>
Pair. EMPTY
An empty Pair.Methods in org.forgerock.util that return Pair Modifier and Type Method Description static <F,S>
Pair<F,S>Pair. empty()
Returns an empty Pair matching the required types.static <F,S>
Pair<F,S>Pair. of(F first, S second)
Creates a newPair
.Methods in org.forgerock.util that return types with arguments of type Pair Modifier and Type Method Description static <F extends Comparable<F>,S extends Comparable<S>>
Comparator<Pair<F,S>>Pair. getPairComparator()
Returns a comparator for Pairs of comparable objects.
-