Uses of Class
org.forgerock.opendj.ldap.Dn
-
Packages that use Dn Package Description org.forgerock.openam.ldap This package contains utility methods to ease/unify development when using the OpenDJ LDAP SDK.org.forgerock.opendj.discovery Contains the Service Discovery Mechanisms and APIs.org.forgerock.opendj.io Classes and interfaces providing I/O functionality.org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.forgerock.opendj.ldap.controls Classes and interfaces for common LDAP controls.org.forgerock.opendj.ldap.messages Classes and interfaces for core LDAP requests/responses.org.forgerock.opendj.ldap.schema Classes and interfaces for constructing and querying LDAP schemas.org.forgerock.opendj.ldif Classes and interfaces for reading and writing LDIF.org.forgerock.opendj.security An LDAP based security provider having the name "OpenDJ" and exposing an LDAP/LDIF basedKeyStoreservice. -
-
Uses of Dn in org.forgerock.openam.ldap
Methods in org.forgerock.openam.ldap that return Dn Modifier and Type Method Description static DnLDAPUtils. newDN(String orgName)Creates a DN from the specified DN string.Methods in org.forgerock.openam.ldap with parameters of type Dn Modifier and Type Method Description static Set<String>LDAPUtils. collectNonIdenticalValues(Dn compare, Set<String> dns)Returns a set of all the non-root DNs from the collection that are not equal to thecompareparameter.static StringLDAPUtils. getName(Dn dn)Returns the RDN without the attribute name from the passed inDnobject, for example:uid=demo,ou=people,dc=example,dc=comwill returndemo.static StringLDAPUtils. rdnTypeFromDn(Dn dn)When provided a DN, returns the attribute type name of the first RDN.static StringLDAPUtils. rdnValueFromDn(Dn dn)When provided a DN, returns the value part of the first RDN. -
Uses of Dn in org.forgerock.opendj.discovery
Method parameters in org.forgerock.opendj.discovery with type arguments of type Dn Modifier and Type Method Description PartitionReplicationServiceDiscoveryMechanism. getPartition(Collection<Dn> baseDNs)PartitionServiceDiscoveryMechanism. getPartition(Collection<Dn> baseDNs)Returns the partition.PartitionStaticServiceDiscoveryMechanism. getPartition(Collection<Dn> baseDns) -
Uses of Dn in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io with parameters of type Dn Modifier and Type Method Description Asn1WriterAsn1Writer. writeName(Dn dn)Writes the X.501 type Name as an RDN sequence. -
Uses of Dn in org.forgerock.opendj.ldap
Fields in org.forgerock.opendj.ldap with type parameters of type Dn Modifier and Type Field Description static Option<Collection<Dn>>LdapClients. LOAD_BALANCER_BASE_DNSSpecifies the base DN(s) for the data that the ldap service handles.static Option<Set<Dn>>LdapClients. LOAD_BALANCER_PARTITION_BASE_DNSSpecifies partition base DNs.Methods in org.forgerock.opendj.ldap that return Dn Modifier and Type Method Description DnAttributeParser. asDn()Returns the first value decoded as aDNusing the schema associated with this parser, ornullif the attribute does not contain any values.DnAttributeParser. asDn(String defaultValue)Returns the first value decoded as aDNusing the schema associated with this parser, ordefaultValueif the attribute does not contain any values.DnAttributeParser. asDn(Dn defaultValue)Returns the first value decoded as aDNusing the schema associated with this parser, ordefaultValueif the attribute does not contain any values.DnDn. child(String dn)Returns a DN which is subordinate to this DN and having the additional RDN components contained in the provided DN decoded using the default schema.DnDn. child(String attributeType, Object attributeValue)Returns a DN which is an immediate child of this DN and with an RDN having the provided attribute type and value decoded using the default schema.DnDn. child(Dn dn)Returns a DN which is subordinate to this DN and having the additional RDN components contained in the provided DN.DnDn. child(Rdn rdn)Returns a DN which is an immediate child of this DN and having the specified RDN.static DnDn. emptyDn()Returns the empty DN.static DnDn. format(String template, Object... attributeValues)Creates a new DN using the provided DN template and unescaped attribute values using the default schema.static DnDn. format(String template, Schema schema, Object... attributeValues)Creates a new DN using the provided DN template and unescaped attribute values using the provided schema.DnAbstractMapEntry. getName()DnEntries.NullEntry. getName()DnEntry. getName()Returns the distinguished name of this entry.DnLdapUrl. getName()Returns the distinguished name of the base entry relative to which the search is to be performed.DnRootDse. getSubschemaSubentry()Returns a string which represents the DN of the subschema subentry holding the schema controlling the Root DSE.DnDn. localName(int index)Returns the DN whose content is the specified number of RDNs from this DN.DnDn. parent()Returns the DN which is the immediate parent of this DN, ornullif this DN is the empty DN.DnDn. parent(int index)Returns the DN which is equal to this DN with the specified number of RDNs removed.DnDn. rename(Dn fromDN, Dn toDN)Returns a copy of this DN whose parent DN,fromDN, has been renamed to the new parent DN,toDN.DnDn. rename(Rdn newRdn, Dn newSuperior)Returns a DN whose value is the result of applying LDAP modify DN semantics to this DN.static DnDn. rootDn()Deprecated.useemptyDn()insteadstatic DnDn. valueOf(String dn)Parses the provided LDAP string representation of a DN using the default schema.static DnDn. valueOf(String dn, Schema schema)Parses the provided LDAP string representation of a DN using the provided schema.static DnDn. valueOf(ByteString dn)Parses the provided LDAP string representation of a DN using the default schema.Methods in org.forgerock.opendj.ldap that return types with arguments of type Dn Modifier and Type Method Description Set<Dn>AttributeParser. asSetOfDn()Returns the values decoded as a set ofDNs using the schema associated with this parser, or an empty set if the attribute does not contain any values.Set<Dn>AttributeParser. asSetOfDn(String... defaultValues)Returns the values decoded as a set ofDNs using the schema associated with this parser, ordefaultValuesif the attribute does not contain any values.Set<Dn>AttributeParser. asSetOfDn(Collection<Dn> defaultValues)Returns the values decoded as a set ofDNs using the schema associated with this parser, ordefaultValuesif the attribute does not contain any values.Set<Dn>AttributeParser. asSetOfDn(Dn... defaultValues)Returns the values decoded as a set ofDNs using the schema associated with this parser, ordefaultValuesif the attribute does not contain any values.static Function<ByteString,Dn,LocalizedIllegalArgumentException>Functions. byteStringToDn()Returns a function which parsesDNs using the default schema.static Function<ByteString,Dn,LocalizedIllegalArgumentException>Functions. byteStringToDn(Schema schema)Returns a function which parsesDNs using the provided schema.Function<Dn,Entry>DecodeOptions. getEntryFactory()Returns the function which will be used for creating newEntryinstances when decoding entries.Collection<Dn>RootDse. getNamingContexts()Returns an unmodifiable list of DNs identifying the context prefixes of the naming contexts that the Directory Server masters or shadows (in part or in whole).Methods in org.forgerock.opendj.ldap with parameters of type Dn Modifier and Type Method Description DnAttributeParser. asDn(Dn defaultValue)Returns the first value decoded as aDNusing the schema associated with this parser, ordefaultValueif the attribute does not contain any values.Set<Dn>AttributeParser. asSetOfDn(Dn... defaultValues)Returns the values decoded as a set ofDNs using the schema associated with this parser, ordefaultValuesif the attribute does not contain any values.DnDn. child(Dn dn)Returns a DN which is subordinate to this DN and having the additional RDN components contained in the provided DN.intDn. compareTo(Dn dn)booleanMemoryBackend. contains(Dn dn)Returnstrueif the named entry exists in this memory backend.default ResultConnection. delete(Dn name)Deletes the named entry from the Directory Server.EntryMemoryBackend. get(Dn dn)Returns a deep copy of the named entry contained in this memory backend, ornullif it does not exist.booleanMemoryBackend. hasSubordinates(Dn dn)Returnstrueif the named entry exists and has at least one child entry.booleanDn. isChildOf(Dn dn)Returnstrueif this DN is an immediate child of the provided DN.booleanDn. isInScopeOf(Dn dn, SearchScope scope)Returnstrueif this DN matches the provided base DN and search scope.booleanDn. isParentOf(Dn dn)Returnstrueif this DN is the immediate parent of the provided DN.booleanDn. isSubordinateOrEqualTo(Dn dn)Returnstrueif this DN is subordinate to or equal to the provided DN.booleanDn. isSubordinateTo(Dn dn)Returnstrueif this DN is subordinate to, but not equal to the provided DN.booleanDn. isSuperiorOrEqualTo(Dn dn)Returnstrueif this DN is superior to or equal to the provided DN.booleanDn. isSuperiorTo(Dn dn)Returnstrueif this DN is superior to, but not equal to the provided DN.static LdapExceptionLdapException. newLdapException(ResultCode resultCode, CharSequence diagnosticMessage, Dn matchedDn, Throwable cause)Creates a new LDAP exception with the provided resultCode, diagnosticMessage, matched DN and cause.static EntryEntries. nullEntry(Dn dn)Returns a read-only empty entry having the provided distinguished name.intMemoryBackend. numSubordinates(Dn dn)Returns the number of entries which are immediately subordinate to the named entry, or0if the named entry does not exist.SearchResultEntryAbstractConnection. readEntry(Dn baseObject, String... attributeDescriptions)SearchResultEntryAbstractConnectionWrapper. readEntry(Dn name, String... attributeDescriptions)Reads the named entry from the Directory Server.SearchResultEntryConnection. readEntry(Dn name, String... attributeDescriptions)Reads the named entry from the Directory Server.default io.reactivex.rxjava3.core.Single<SearchResultEntry>LdapClientSocket. readEntry(Dn name, String... attributeDescriptions)Reads the named entry from the Directory Server.LdapPromise<SearchResultEntry>AbstractConnection. readEntryAsync(Dn name, Collection<String> attributeDescriptions)LdapPromise<SearchResultEntry>AbstractConnectionWrapper. readEntryAsync(Dn name, Collection<String> attributeDescriptions)Asynchronously reads the named entry from the Directory Server.LdapPromise<SearchResultEntry>Connection. readEntryAsync(Dn name, Collection<String> attributeDescriptions)Asynchronously reads the named entry from the Directory Server.DnDn. rename(Dn fromDN, Dn toDN)Returns a copy of this DN whose parent DN,fromDN, has been renamed to the new parent DN,toDN.DnDn. rename(Rdn newRdn, Dn newSuperior)Returns a DN whose value is the result of applying LDAP modify DN semantics to this DN.EntryAbstractMapEntry. setName(Dn dn)EntryEntries.NullEntry. setName(Dn dn)default EntryEntry. setName(Dn dn)Sets the distinguished name of this entry (optional operation).Method parameters in org.forgerock.opendj.ldap with type arguments of type Dn Modifier and Type Method Description MemoryBackendMemoryBackend. addVirtualAttributes(AttributeDescription attributeDescription, BiFunction<Dn,MemoryBackend,Attribute> virtualAttributeFactory)Adds a virtual attribute to the backend.Set<Dn>AttributeParser. asSetOfDn(Collection<Dn> defaultValues)Returns the values decoded as a set ofDNs using the schema associated with this parser, ordefaultValuesif the attribute does not contain any values.static LdapClientLdapClients. newFixedSizeDistributionLoadBalancer(Set<Dn> partitionBaseDns, ConsistentHashMap<? extends LdapClient> partitions, Options options)Creates a distribution load balancer which uses consistent hashing to distributes requests across a set of partitions based on a hash of each request's target DN.DecodeOptionsDecodeOptions. setEntryFactory(Function<Dn,Entry> factory)Sets the function which will be used for creating newEntryinstances when decoding entries.Constructors in org.forgerock.opendj.ldap with parameters of type Dn Constructor Description AbstractMapEntry(Dn name, M attributes)Creates an empty entry using the provided distinguished name andMap.LdapUrl(boolean isSecured, String host, Integer port, Dn name)Creates a new LDAP URL referring to a single entry on the specified server.LdapUrl(boolean isSecured, String host, Integer port, Dn name, SearchScope scope, Filter filter, String... attributes)Creates a new LDAP URL including the full set of parameters for a search request.LinkedHashMapEntry(Dn name)Creates an empty entry using the provided distinguished name and no attributes.TreeMapEntry(Dn name)Creates an empty entry using the provided distinguished name and no attributes. -
Uses of Dn in org.forgerock.opendj.ldap.controls
Methods in org.forgerock.opendj.ldap.controls that return Dn Modifier and Type Method Description DnProxiedAuthV1RequestControl. getAuthorizationDnName()Returns the distinguished name of the user whose authorization is to be used when performing the operation.DnGetEffectiveRightsRequestControl. getAuthorizationName()Returns the distinguished name of the user for which effective rights are to be returned, ornullif the client's authentication ID is to be used.DnEntryChangeNotificationResponseControl. getPreviousName()Returns the distinguished name that the entry had prior to a modify DN operation, ornullif the operation was not a modify DN.Methods in org.forgerock.opendj.ldap.controls with parameters of type Dn Modifier and Type Method Description static AuthorizationIdentityResponseControlAuthorizationIdentityResponseControl. newControl(Dn authorizationDn)Creates a new authorization identity response control using the provided authorization ID.static EntryChangeNotificationResponseControlEntryChangeNotificationResponseControl. newControl(PersistentSearchChangeType type, Dn previousName, long changeNumber)Creates a new entry change notification response control with the provided change type and optional previous distinguished name and change number.static GetEffectiveRightsRequestControlGetEffectiveRightsRequestControl. newControl(boolean isCritical, Dn authorizationName, Collection<AttributeType> attributes)Creates a new get effective rights request control with the provided criticality, optional authorization name and attribute list.static ProxiedAuthV1RequestControlProxiedAuthV1RequestControl. newControl(Dn authorizationName)Creates a new proxy authorization v1 request control with the provided authorization name. -
Uses of Dn in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return Dn Modifier and Type Method Description static DnRequests. dnOfRequest(Request request)Returns the DN of the entry targeted by the provided request, ornullif the target entry cannot be determined.DnAddRequest. getName()DnBindRequest. getName()Returns the name of the Directory object that the client wishes to bind as.DnCompareRequest. getName()Returns the distinguished name of the entry to be compared.DnDeleteRequest. getName()Returns the distinguished name of the entry to be deleted.DnModifyDnRequest. getName()Returns the distinguished name of the entry to be renamed.DnModifyRequest. getName()Returns the distinguished name of the entry to be modified.DnSearchRequest. getName()Returns the distinguished name of the base entry relative to which the search is to be performed.DnModifyDnRequest. getNewSuperior()Returns the distinguished name of an existing entry that will become the immediate superior (parent) of the entry to be renamed.Methods in org.forgerock.opendj.ldap.messages with parameters of type Dn Modifier and Type Method Description static AddRequestRequests. newAddRequest(Dn name)Creates a new add request using the provided distinguished name.static CompareRequestRequests. newCompareRequest(Dn name, AttributeDescription attributeDescription, Object assertionValue)Creates a new compare request using the provided distinguished name, attribute name, and assertion value.static DeleteRequestRequests. newDeleteRequest(Dn name)Creates a new delete request using the provided distinguished name.static ModifyDnRequestRequests. newModifyDnRequest(Dn name, Rdn newRDN)Creates a new modify DN request using the provided distinguished name and new RDN.static ModifyRequestRequests. newModifyRequest(Dn name)Creates a new modify request using the provided distinguished name.static SearchRequestRequests. newSearchRequest(Dn name, SearchScope scope)Creates a new search request using the provided distinguished name and scope.static SearchRequestRequests. newSearchRequest(Dn name, SearchScope scope, Filter filter, String... attributeDescriptions)Creates a new search request using the provided distinguished name, scope, and filter.static SearchResultEntryResponses. newSearchResultEntry(Dn name)Creates a new search result entry using the provided distinguished name.static BindRequestRequests. newSimpleBindRequest(Dn name, byte[] password)Creates a new simple bind request having the provided name and password suitable for name/password authentication.static BindRequestRequests. newSimpleBindRequest(Dn name, char[] password)Creates a new simple bind request having the provided name and password suitable for name/password authentication.static BindRequestRequests. newSimpleBindRequest(Dn name, String password)Creates a new simple bind request having the provided name and password suitable for name/password authentication.static SearchRequestRequests. newSingleEntrySearchRequest(Dn name, SearchScope scope, Filter filter, String... attributeDescriptions)Creates a new search request for a single entry, using the provided distinguished name, scope, and filter.BindResultBindResult. setMatchedDn(Dn dn)CompareResultCompareResult. setMatchedDn(Dn dn)ExtendedResultExtendedResult. setMatchedDn(Dn dn)GenericExtendedResultGenericExtendedResult. setMatchedDn(Dn dn)PasswordModifyExtendedResultPasswordModifyExtendedResult. setMatchedDn(Dn dn)ResultResult. setMatchedDn(Dn dn)Sets the matched DN associated with this result.WhoAmIExtendedResultWhoAmIExtendedResult. setMatchedDn(Dn dn)AddRequestAddRequest. setName(Dn dn)BindRequestBindRequest. setName(Dn name)Sets the name of the Directory object that the client wishes to bind as.CompareRequestCompareRequest. setName(Dn dn)Sets the distinguished name of the entry to be compared.DeleteRequestDeleteRequest. setName(Dn dn)Sets the distinguished name of the entry to be deleted.ModifyDnRequestModifyDnRequest. setName(Dn dn)Sets the distinguished name of the entry to be renamed.ModifyRequestModifyRequest. setName(Dn dn)Sets the distinguished name of the entry to be modified.SearchRequestSearchRequest. setName(Dn dn)Sets the distinguished name of the base entry relative to which the search is to be performed.default SearchResultEntrySearchResultEntry. setName(Dn dn)ModifyDnRequestModifyDnRequest. setNewSuperior(Dn dn)Sets the distinguished name of an existing entry that will become the immediate superior (parent) of the entry to be renamed. -
Uses of Dn in org.forgerock.opendj.ldap.schema
Methods in org.forgerock.opendj.ldap.schema that return types with arguments of type Dn Modifier and Type Method Description Function<Dn,Entry,LdapException>SchemaValidationPolicy. checkDitStructureRulesParentEntryResolver()Returns the parent entry resolver which should be used for retrieving the parent entry during DIT structure rule validation.Methods in org.forgerock.opendj.ldap.schema with parameters of type Dn Modifier and Type Method Description SchemaBuilderSchemaBuilder. addSchema(Connection connection, Dn name, boolean overwrite)Reads the schema elements contained in the named subschema sub-entry and adds them to this schema builder.io.reactivex.rxjava3.core.Single<SchemaBuilder>SchemaBuilder. addSchema(LdapClientSocket socket, Dn name, boolean overwrite)Reads the schema elements contained in the named subschema sub-entry and adds them to this schema builder.LdapPromise<SchemaBuilder>SchemaBuilder. addSchemaAsync(Connection connection, Dn name, boolean overwrite)Asynchronously reads the schema elements contained in the named subschema sub-entry and adds them to this schema builder.SchemaBuilderSchemaBuilder. addSchemaForEntry(Connection connection, Dn name, boolean overwrite)Reads the schema elements contained in the subschema sub-entry which applies to the named entry and adds them to this schema builder.io.reactivex.rxjava3.core.Single<SchemaBuilder>SchemaBuilder. addSchemaForEntry(LdapClientSocket socket, Dn name, boolean overwrite)Reads the schema elements contained in the subschema sub-entry which applies to the named entry and adds them to this schema builder.LdapPromise<SchemaBuilder>SchemaBuilder. addSchemaForEntryAsync(Connection connection, Dn name, boolean overwrite)Asynchronously reads the schema elements contained in the subschema sub-entry which applies to the named entry and adds them to this schema builder.static SearchRequestSchema. getReadSchemaSearchRequest(Dn name)Constructs a search request for retrieving the named subschema sub-entry.static SchemaSchema. readSchema(Connection connection, Dn name)Reads the schema contained in the named subschema sub-entry.static io.reactivex.rxjava3.core.Single<Schema>Schema. readSchema(LdapClientSocket socket, Dn name)Reads the schema contained in the named subschema sub-entry.static LdapPromise<Schema>Schema. readSchemaAsync(Connection connection, Dn name)Asynchronously reads the schema contained in the named subschema sub-entry.static SchemaSchema. readSchemaForEntry(Connection connection, Dn name)Reads the schema contained in the subschema sub-entry which applies to the named entry.static io.reactivex.rxjava3.core.Single<Schema>Schema. readSchemaForEntry(LdapClientSocket socket, Dn name)Reads the schema contained in the subschema sub-entry which applies to the named entry.static LdapPromise<Schema>Schema. readSchemaForEntryAsync(Connection connection, Dn name)Asynchronously reads the schema contained in the subschema sub-entry which applies to the named entry.Method parameters in org.forgerock.opendj.ldap.schema with type arguments of type Dn Modifier and Type Method Description SchemaValidationPolicySchemaValidationPolicy. checkDitStructureRules(SchemaValidationPolicy.Action policy, Function<Dn,Entry,LdapException> parentEntryResolver)Specifies the policy for validating entries against structure rules defined in the schema. -
Uses of Dn in org.forgerock.opendj.ldif
Methods in org.forgerock.opendj.ldif that return Dn Modifier and Type Method Description DnChangeRecord. getName()Returns the distinguished name of the entry being modified by thisChangeRecord.Methods in org.forgerock.opendj.ldif with parameters of type Dn Modifier and Type Method Description LdifChangeRecordReaderLdifChangeRecordReader. setExcludeBranch(Dn excludeBranch)Excludes all change records which target entries beneath the named entry (inclusive) from being read from LDIF.LdifChangeRecordWriterLdifChangeRecordWriter. setExcludeBranch(Dn excludeBranch)Excludes all change records which target entries beneath the named entry (inclusive) from being written to LDIF.LdifEntryReaderLdifEntryReader. setExcludeBranch(Dn excludeBranch)Excludes all entries beneath the named entry (inclusive) from being read from LDIF.LdifEntryWriterLdifEntryWriter. setExcludeBranch(Dn excludeBranch)Excludes all entries beneath the named entry (inclusive) from being written to LDIF.LdifChangeRecordReaderLdifChangeRecordReader. setIncludeBranch(Dn includeBranch)Ensures that all change records which target entries beneath the named entry (inclusive) are read from LDIF.LdifChangeRecordWriterLdifChangeRecordWriter. setIncludeBranch(Dn includeBranch)Ensures that all change records which target entries beneath the named entry (inclusive) are written to LDIF.LdifEntryReaderLdifEntryReader. setIncludeBranch(Dn includeBranch)Ensures that all entries beneath the named entry (inclusive) are read from LDIF.LdifEntryWriterLdifEntryWriter. setIncludeBranch(Dn includeBranch)Ensures that all entries beneath the named entry (inclusive) are written to LDIF.ChangeRecordChangeRecord. setName(Dn dn)Sets the distinguished name of the entry to be updated. -
Uses of Dn in org.forgerock.opendj.security
Methods in org.forgerock.opendj.security with parameters of type Dn 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.X509CertificateBuilderX509CertificateBuilder. issuerDn(Dn issuerDn)Sets the certificate issuer name.static KeyStoreParametersKeyStoreParameters. newKeyStoreParameters(ConnectionFactory factory, Dn baseDN)Creates a set of LDAP key store parameters with default options.static KeyStoreParametersKeyStoreParameters. newKeyStoreParameters(ConnectionFactory factory, Dn baseDN, Options options)Creates a set of LDAP key store parameters with custom options.static KeyStoreOpenDjSecurityProvider. newLdapKeyStore(ConnectionFactory factory, Dn baseDN)Creates a new LDAP key store with default options.static KeyStoreOpenDjSecurityProvider. newLdapKeyStore(ConnectionFactory factory, Dn baseDN, Options options)Creates a new LDAP key store with custom options.static KeyStoreOpenDjSecurityProvider. newLdifKeyStore(File ldifFile, Dn baseDN)Creates a new LDIF based key store which will read and write key store objects to the provided key store file.static KeyStoreOpenDjSecurityProvider. newLdifKeyStore(File ldifFile, Dn baseDN, Options options)Creates a new LDIF based key store which will read and write key store objects to the provided key store file.X509CertificateBuilderX509CertificateBuilder. subjectDn(Dn subjectDn)Sets the certificate subject name.
-