Interface BlindTrustManagerProviderCfgClient
-
- All Superinterfaces:
ConfigurationClient,TrustManagerProviderCfgClient
public interface BlindTrustManagerProviderCfgClient extends TrustManagerProviderCfgClient
A client-side interface for reading and modifying Blind Trust Manager Provider settings.The blind trust manager provider always trusts any certificate that is presented to it, regardless of its issuer, subject, and validity dates.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectDefinition<? extends BlindTrustManagerProviderCfgClient,? extends BlindTrustManagerProviderCfg>definition()Get the configuration definition associated with this Blind Trust Manager Provider.ValueOrExpression<String>getJavaClass()Gets the "java-class" property.voidsetJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.-
Methods inherited from interface org.forgerock.opendj.config.ConfigurationClient
commit, properties
-
Methods inherited from interface org.forgerock.opendj.server.config.client.TrustManagerProviderCfgClient
isEnabled, setEnabled
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends BlindTrustManagerProviderCfgClient,? extends BlindTrustManagerProviderCfg> definition()
Get the configuration definition associated with this Blind Trust Manager Provider.- Specified by:
definitionin interfaceConfigurationClient- Specified by:
definitionin interfaceTrustManagerProviderCfgClient- Returns:
- Returns the configuration definition associated with this Blind Trust Manager Provider.
-
getJavaClass
@MandatoryProperty ValueOrExpression<String> getJavaClass()
Gets the "java-class" property.The fully-qualified name of the Java class that provides the Blind Trust Manager Provider implementation.
Default value:
org.opends.server.extensions.BlindTrustManagerProvider- Specified by:
getJavaClassin interfaceTrustManagerProviderCfgClient- Returns:
- Returns the value of the "java-class" property.
-
setJavaClass
@MandatoryProperty void setJavaClass(ValueOrExpression<String> value) throws PropertyException
Sets the "java-class" property.The fully-qualified name of the Java class that provides the Blind Trust Manager Provider implementation.
- Specified by:
setJavaClassin interfaceTrustManagerProviderCfgClient- Parameters:
value- The value of the "java-class" property.- Throws:
PropertyException- If the new value is invalid.
-
-