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.opendj.security An LDAP based security provider having the name "OpenDJ" and exposing an LDAP/LDIF basedKeyStoreservice.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.opendj.security
Methods in org.forgerock.opendj.security that return Pair Modifier and Type Method Description Pair<PrivateKey,X509Certificate>DeploymentId. generateSslKeyPair(Dn subjectDn, Collection<String> dnsNames)Generates an SSL private key and an SSL certificate signed by the root CA certificate associated with this deployment ID.Pair<PrivateKey,X509Certificate>DeploymentId. generateSslKeyPair(Dn subjectDn, Collection<String> dnsNames, Instant notBefore, Duration validity)Generates an SSL private key and an SSL certificate signed by the root CA certificate associated with this deployment ID.Pair<PrivateKey,X509Certificate>DeploymentId. generateSslKeyPairForWritableReplica(Dn subjectDn, Collection<String> dnsNames, Instant notBefore, Duration validity)Generates an SSL private key and an SSL certificate, same asDeploymentId.generateSslKeyPair(Dn, Collection, Instant, Duration), but theExtendedKeyUsageextension has an additional ForgeRock defined usage for recognizing replicas allowed to send updates.Pair<PrivateKey,X509Certificate>DeploymentId. getMasterKeyPair()Returns the master public/private key-pair associated with this deployment ID. -
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 aDescribablehandler 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. EMPTYAn 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.
-