public final class OpenDjSecurityProvider extends Provider
KeyStore
service, as well as providing utility methods facilitating construction of LDAP/LDIF based key stores. See the
package documentation for more information.Provider.Service
defaults
Constructor and Description |
---|
OpenDjSecurityProvider()
Creates a default LDAP security provider with no default key store configuration.
|
OpenDjSecurityProvider(String configFile)
Creates a LDAP security provider with provided default key store configuration.
|
OpenDjSecurityProvider(URI configFile)
Creates a LDAP security provider with provided default key store configuration.
|
Modifier and Type | Method and Description |
---|---|
Provider |
configure(String configFile)
Implements the JDK9 configure() method for compatibility with recent versions fof Java.
|
static KeyStoreObjectCache |
newCapacityBasedKeyStoreObjectCache(int capacity)
Creates a new fixed capacity key store object cache which will evict objects once it reaches the
provided capacity.
|
static Factory<char[]> |
newClearTextPasswordFactory(char[] password)
Returns a password factory which will return a copy of the provided password for each invocation of
Factory.newInstance() , and which does not provide any protection of the in memory representation of
the password. |
static KeyStoreObjectCache |
newKeyStoreObjectCacheFromMap(Map<String,KeyStoreObject> map)
Creates a new key store object cache which will delegate to the provided
Map . |
static KeyStore |
newLdapKeyStore(ConnectionFactory factory,
Dn baseDN)
Creates a new LDAP key store with default options.
|
static KeyStore |
newLdapKeyStore(ConnectionFactory factory,
Dn baseDN,
Options options)
Creates a new LDAP key store with custom options.
|
static KeyStore |
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 KeyStore |
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.
|
clear, compute, computeIfAbsent, computeIfPresent, elements, entrySet, forEach, get, getInfo, getName, getOrDefault, getProperty, getService, getServices, getVersion, keys, keySet, load, merge, put, putAll, putIfAbsent, putService, remove, remove, removeService, replace, replace, replaceAll, toString, values
getProperty, list, list, load, loadFromXML, propertyNames, save, setProperty, store, store, storeToXML, storeToXML, stringPropertyNames
clone, contains, containsKey, containsValue, equals, hashCode, isEmpty, rehash, size
public OpenDjSecurityProvider()
public OpenDjSecurityProvider(String configFile)
configFile
- The configuration file, which may be null
indicating that key stores will be configured when they
are instantiated.public OpenDjSecurityProvider(URI configFile)
configFile
- The configuration file, which may be null
indicating that key stores will be configured when they
are instantiated.public Provider configure(String configFile)
configFile
- The configuration file, which may be null
indicating that key stores will be configured when they
are instantiated.public static KeyStore newLdapKeyStore(ConnectionFactory factory, Dn baseDN)
loaded
.factory
- The LDAP connection factory.baseDN
- The DN of the subtree containing the LDAP key store.public static KeyStore newLdapKeyStore(ConnectionFactory factory, Dn baseDN, Options options)
loaded
.factory
- The LDAP connection factory.baseDN
- The DN of the subtree containing the LDAP key store.options
- The optional key store parameters, including the cache configuration, key store password, and crypto
parameters.For the list of available key store options.
public static KeyStore newLdifKeyStore(File ldifFile, Dn baseDN) throws IOException
loaded
.ldifFile
- The name of the LDIF file containing the key store objects.baseDN
- The DN of the subtree containing the LDAP key store.IOException
- If an error occurred while reading the LDIF file.public static KeyStore newLdifKeyStore(File ldifFile, Dn baseDN, Options options) throws IOException
loaded
.ldifFile
- The name of the LDIF file containing the key store objects.baseDN
- The DN of the subtree containing the LDAP key store.options
- The optional key store parameters, including the cache configuration, key store password, and crypto
parameters.IOException
- If an error occurred while reading the LDIF file.public static KeyStoreObjectCache newKeyStoreObjectCacheFromMap(Map<String,KeyStoreObject> map)
Map
. It is the responsibility
of the map implementation to perform cache eviction if needed. The provided map MUST be thread-safe.map
- The thread-safe Map
implementation in which key store objects will be stored.public static KeyStoreObjectCache newCapacityBasedKeyStoreObjectCache(int capacity)
capacity
- The maximum number of key store objects that will be cached before eviction occurs.public static Factory<char[]> newClearTextPasswordFactory(char[] password)
Factory.newInstance()
, and which does not provide any protection of the in memory representation of
the password.password
- The password or null
if no password should ever be returned.Copyright © 2010-2018, ForgeRock All Rights Reserved.