Uses of Class
org.forgerock.util.Pair
-
Packages that use Pair Package Description org.forgerock.json.resource Classes and interfaces for core types including connections, request handlers, resources, and their exceptions.org.forgerock.opendj.rest2ldap APIs for implementing REST to LDAP gateways.org.forgerock.opendj.rest2ldap.authz This package containsFilter
to authenticate and authorize LDAP connections.org.forgerock.opendj.rest2ldap.schema This package contains LDAP schema syntaxes and matching rules for JSON based attributes.org.forgerock.opendj.security An LDAP based security provider having the name "OpenDJ" and exposing an LDAP/LDIF basedKeyStore
service.org.forgerock.util Provides common interfaces and classes.org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.types Contains implementations for a number of Directory Server data types. -
-
Uses of Pair in org.forgerock.json.resource
Methods in org.forgerock.json.resource that return Pair Modifier and Type Method Description protected Pair<org.forgerock.services.routing.RouteMatcher<Request>,RequestHandler>
Router. getSelfApiHandler()
-
Uses of Pair in org.forgerock.opendj.rest2ldap
Method parameters in org.forgerock.opendj.rest2ldap with type arguments of type Pair Modifier and Type Method Description protected ConditionalFilters.ConditionalFilter
Rest2LdapHttpApplication. newBasicAuthenticationFilter(AuthenticationStrategy authenticationStrategy, Function<org.forgerock.http.protocol.Headers,Pair<String,String>,NeverThrowsException> credentialsExtractor)
Gets aFilter
in charge of performing the HTTP-Basic Authentication. -
Uses of Pair in org.forgerock.opendj.rest2ldap.authz
Methods in org.forgerock.opendj.rest2ldap.authz that return types with arguments of type Pair Modifier and Type Method Description static Function<org.forgerock.http.protocol.Headers,Pair<String,String>,NeverThrowsException>
CredentialExtractors. httpBasicExtractor()
Creates a function which extracts the user's credentials from the standard HTTP Basic header.static Function<org.forgerock.http.protocol.Headers,Pair<String,String>,NeverThrowsException>
CredentialExtractors. newCustomHeaderExtractor(String customHeaderUsername, String customHeaderPassword)
Creates a function which extracts the user's credentials from custom HTTP header in addition of the standard HTTP Basic one.Method parameters in org.forgerock.opendj.rest2ldap.authz with type arguments of type Pair Modifier and Type Method Description static ConditionalFilters.ConditionalFilter
Authorization. newConditionalHttpBasicAuthenticationFilter(AuthenticationStrategy authenticationStrategy, Function<org.forgerock.http.protocol.Headers,Pair<String,String>,NeverThrowsException> credentialsExtractor)
Creates a newConditionalFilters.ConditionalFilter
performing authentication. -
Uses of Pair in org.forgerock.opendj.rest2ldap.schema
Methods in org.forgerock.opendj.rest2ldap.schema that return Pair Modifier and Type Method Description static Pair<Dn,Object>
JsonSchema. byteStringToNameAndJson(Schema schema, ByteString value)
Decodes the provided value as a Name and JSON value. -
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 theExtendedKeyUsage
extension 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.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. -
Uses of Pair in org.opends.server.api
Methods in org.opends.server.api with parameters of type Pair Modifier and Type Method Description void
EntryCache. setIncludeExcludeFilters(Pair<Set<Filter>,Set<Filter>> filters)
Specifies the search filters used for including in / excluding entries from the cache. -
Uses of Pair in org.opends.server.core
Methods in org.opends.server.core that return Pair Modifier and Type Method Description Pair<Set<Dn>,Set<Dn>>
BackendConfigManager. registerBaseDNs(Backend<? extends BackendCfg> backend, Set<Dn> newBaseDns)
Registers the provided base DNs for the provided backend. -
Uses of Pair in org.opends.server.types
Methods in org.opends.server.types that return Pair Modifier and Type Method Description Pair<Boolean,LocalizableMessage>
LDIFImportConfig. includeEntry(Dn dn)
Indicates whether to include the entry with the specified DN in the import.Pair<Boolean,LocalizableMessage>
LDIFImportConfig. includeEntry(Entry entry)
Indicates whether the specified entry should be included in the import based on the configured set of include and exclude filters.
-