public interface ServiceDiscoveryMechanismCfgClient extends ConfigurationClient
A Service Discovery Mechanism identifies a set of LDAP servers for load balancing
| Modifier and Type | Method and Description |
|---|---|
ManagedObjectDefinition<? extends ServiceDiscoveryMechanismCfgClient,? extends ServiceDiscoveryMechanismCfg> |
definition()
Get the configuration definition associated with this Service Discovery Mechanism.
|
String |
getJavaClass()
Gets the "java-class" property.
|
String |
getKeyManagerProvider()
Gets the "key-manager-provider" property.
|
SortedSet<String> |
getSSLCertNickname()
Gets the "ssl-cert-nickname" property.
|
String |
getTrustManagerProvider()
Gets the "trust-manager-provider" property.
|
boolean |
isUseSSL()
Gets the "use-ssl" property.
|
boolean |
isUseStartTLS()
Gets the "use-start-tls" property.
|
void |
setJavaClass(String value)
Sets the "java-class" property.
|
void |
setKeyManagerProvider(String value)
Sets the "key-manager-provider" property.
|
void |
setSSLCertNickname(Collection<String> values)
Sets the "ssl-cert-nickname" property.
|
void |
setTrustManagerProvider(String value)
Sets the "trust-manager-provider" property.
|
void |
setUseSSL(Boolean value)
Sets the "use-ssl" property.
|
void |
setUseStartTLS(Boolean value)
Sets the "use-start-tls" property.
|
commit, propertiesManagedObjectDefinition<? extends ServiceDiscoveryMechanismCfgClient,? extends ServiceDiscoveryMechanismCfg> definition()
definition in interface ConfigurationClientString getJavaClass()
Specifies the fully-qualified name of the Java class that provides the Service Discovery Mechanism implementation.
void setJavaClass(String value) throws PropertyException
Specifies the fully-qualified name of the Java class that provides the Service Discovery Mechanism implementation.
value - The value of the "java-class" property.PropertyException - If the new value is invalid.String getKeyManagerProvider()
Specifies the name of the key manager that should be used with this Service Discovery Mechanism.
void setKeyManagerProvider(String value) throws PropertyException
Specifies the name of the key manager that should be used with this Service Discovery Mechanism.
value - The value of the "key-manager-provider" property.PropertyException - If the new value is invalid.SortedSet<String> getSSLCertNickname()
Specifies the nicknames (also called the aliases) of the keys or key pairs that the Service Discovery Mechanism should use when performing SSL communication. The property can be used multiple times (referencing different nicknames) when server certificates with different public key algorithms are used in parallel (for example, RSA, DSA, and ECC-based algorithms). When a nickname refers to an asymmetric (public/private) key pair, the nickname for the public key certificate and associated private key entry must match exactly. A single nickname is used to retrieve both the public key and the private key.
This is only applicable when the Service Discovery Mechanism is configured to use SSL.
void setSSLCertNickname(Collection<String> values) throws PropertyException
Specifies the nicknames (also called the aliases) of the keys or key pairs that the Service Discovery Mechanism should use when performing SSL communication. The property can be used multiple times (referencing different nicknames) when server certificates with different public key algorithms are used in parallel (for example, RSA, DSA, and ECC-based algorithms). When a nickname refers to an asymmetric (public/private) key pair, the nickname for the public key certificate and associated private key entry must match exactly. A single nickname is used to retrieve both the public key and the private key.
This is only applicable when the Service Discovery Mechanism is configured to use SSL.
values - The values of the "ssl-cert-nickname" property.PropertyException - If one or more of the new values are invalid.String getTrustManagerProvider()
Specifies the name of the trust manager that should be used with the Service Discovery Mechanism.
void setTrustManagerProvider(String value) throws PropertyException
Specifies the name of the trust manager that should be used with the Service Discovery Mechanism.
value - The value of the "trust-manager-provider" property.PropertyException - If the new value is invalid.boolean isUseSSL()
Indicates whether the Service Discovery Mechanism should use SSL.
If enabled, the Service Discovery Mechanism will use SSL to encrypt communication with the clients.
void setUseSSL(Boolean value) throws PropertyException
Indicates whether the Service Discovery Mechanism should use SSL.
If enabled, the Service Discovery Mechanism will use SSL to encrypt communication with the clients.
value - The value of the "use-ssl" property.PropertyException - If the new value is invalid.boolean isUseStartTLS()
Indicates whether the Service Discovery Mechanism should use Start TLS.
If enabled, the Service Discovery Mechanism will use Start TLS to encrypt communication with remote servers.
void setUseStartTLS(Boolean value) throws PropertyException
Indicates whether the Service Discovery Mechanism should use Start TLS.
If enabled, the Service Discovery Mechanism will use Start TLS to encrypt communication with remote servers.
value - The value of the "use-start-tls" property.PropertyException - If the new value is invalid.Copyright © 2017-2020 Wren Security. All Rights Reserved.