Interface PemTrustManagerProviderCfg
-
- All Superinterfaces:
Configuration
,TrustManagerProviderCfg
public interface PemTrustManagerProviderCfg extends TrustManagerProviderCfg
A server-side interface for querying Pem Trust Manager Provider settings.The Pem Trust Manager Provider obtains the trusted certificates from PEM files in a file system directory.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addPemChangeListener(ConfigurationChangeListener<PemTrustManagerProviderCfg> listener)
Register to be notified when this Pem Trust Manager Provider is changed.Class<? extends PemTrustManagerProviderCfg>
configurationClass()
Gets the configuration class associated with this Pem Trust Manager Provider.SortedSet<String>
getExcludedFilenamePattern()
Gets the "excluded-filename-pattern" property.String
getJavaClass()
Gets the "java-class" property.String
getPemDirectory()
Gets the "pem-directory" property.void
removePemChangeListener(ConfigurationChangeListener<PemTrustManagerProviderCfg> listener)
Deregister an existing Pem Trust Manager Provider configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.TrustManagerProviderCfg
addChangeListener, isEnabled, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends PemTrustManagerProviderCfg> configurationClass()
Gets the configuration class associated with this Pem Trust Manager Provider.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfaceTrustManagerProviderCfg
- Returns:
- Returns the configuration class associated with this Pem Trust Manager Provider.
-
addPemChangeListener
void addPemChangeListener(ConfigurationChangeListener<PemTrustManagerProviderCfg> listener)
Register to be notified when this Pem Trust Manager Provider is changed.- Parameters:
listener
- The Pem Trust Manager Provider configuration change listener.
-
removePemChangeListener
void removePemChangeListener(ConfigurationChangeListener<PemTrustManagerProviderCfg> listener)
Deregister an existing Pem Trust Manager Provider configuration change listener.- Parameters:
listener
- The Pem Trust Manager Provider configuration change listener.
-
getExcludedFilenamePattern
SortedSet<String> getExcludedFilenamePattern()
Gets the "excluded-filename-pattern" property.The set of file name patterns identifying files to be excluded from the Pem Trust Manager Provider.
Hidden files will always be excluded. File name patterns use the "glob" syntax defined by the Java "java.nio.file.FileSystem.getPathMatcher" method.
Default values:
.*
,*.bak
,*.tmp
,*.md
- Returns:
- Returns an unmodifiable set containing the values of the "excluded-filename-pattern" property.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.The fully-qualified name of the Java class that provides the Pem Trust Manager Provider implementation.
Default value:
org.opends.server.extensions.PemTrustManagerProvider
- Specified by:
getJavaClass
in interfaceTrustManagerProviderCfg
- Returns:
- Returns the value of the "java-class" property.
-
getPemDirectory
String getPemDirectory()
Gets the "pem-directory" property.Specifies the path to a directory containing all the certificates to trust. It can be an absolute path or a path that is relative to the OpenDJ instance root. The same directory may also be used to for a PEM key manager provider.
- Returns:
- Returns the value of the "pem-directory" property.
-
-