public interface AdministrationConnectorCfg extends Configuration
The Administration Connector is used to interact with administration tools using LDAP.
Modifier and Type | Method and Description |
---|---|
void |
addChangeListener(ConfigurationChangeListener<AdministrationConnectorCfg> listener)
Register to be notified when this Administration Connector is changed.
|
Class<? extends AdministrationConnectorCfg> |
configurationClass()
Gets the configuration class associated with this Administration Connector.
|
SortedSet<AddressMask> |
getAllowedClient()
Gets the "allowed-client" property.
|
SortedSet<AddressMask> |
getDeniedClient()
Gets the "denied-client" property.
|
String |
getKeyManagerProvider()
Gets the "key-manager-provider" property.
|
Dn |
getKeyManagerProviderDn()
Gets the "key-manager-provider" property as a DN.
|
SortedSet<InetAddress> |
getListenAddress()
Gets the "listen-address" property.
|
int |
getListenPort()
Gets the "listen-port" property.
|
SortedSet<String> |
getSslCertNickname()
Gets the "ssl-cert-nickname" property.
|
SortedSet<String> |
getSslCipherSuite()
Gets the "ssl-cipher-suite" property.
|
SortedSet<String> |
getSslProtocol()
Gets the "ssl-protocol" property.
|
String |
getTrustManagerProvider()
Gets the "trust-manager-provider" property.
|
Dn |
getTrustManagerProviderDn()
Gets the "trust-manager-provider" property as a DN.
|
void |
removeChangeListener(ConfigurationChangeListener<AdministrationConnectorCfg> listener)
Deregister an existing Administration Connector configuration change listener.
|
dn, name
Class<? extends AdministrationConnectorCfg> configurationClass()
configurationClass
in interface Configuration
void addChangeListener(ConfigurationChangeListener<AdministrationConnectorCfg> listener)
listener
- The Administration Connector configuration change listener.void removeChangeListener(ConfigurationChangeListener<AdministrationConnectorCfg> listener)
listener
- The Administration Connector configuration change listener.SortedSet<AddressMask> getAllowedClient()
Specifies a set of host names or address masks that determine the clients that are allowed to establish connections to this Administration Connector.
Valid values include a host name, a fully qualified domain name, a domain name, an IP address, or a subnetwork with subnetwork mask.
SortedSet<AddressMask> getDeniedClient()
Specifies a set of host names or address masks that determine the clients that are not allowed to establish connections to this Administration Connector.
Valid values include a host name, a fully qualified domain name, a domain name, an IP address, or a subnetwork with subnetwork mask. If both allowed and denied client masks are defined and a client connection matches one or more masks in both lists, then the connection is denied. If only a denied list is specified, then any client not matching a mask in that list is allowed.
String getKeyManagerProvider()
Specifies the name of the key manager that is used with the Administration Connector .
Dn getKeyManagerProviderDn()
Specifies the name of the key manager that is used with the Administration Connector .
SortedSet<InetAddress> getListenAddress()
Specifies the address or set of addresses on which this Administration Connector should listen for connections from LDAP clients.
Multiple addresses may be provided as separate values for this attribute. If no values are provided, then the Administration Connector listens on all interfaces.
int getListenPort()
Specifies the port number on which the Administration Connector will listen for connections from clients.
Only a single port number may be provided.
SortedSet<String> getSslCertNickname()
Specifies the nicknames (also called the aliases) of the keys or key pairs that the Administration Connector 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.
SortedSet<String> getSslCipherSuite()
Specifies the names of the SSL cipher suites that are allowed for use in SSL communication.
SortedSet<String> getSslProtocol()
Specifies the names of the SSL protocols that are allowed for use in SSL or StartTLS communication.
String getTrustManagerProvider()
Specifies the name of the trust manager that is used with the Administration Connector .
Dn getTrustManagerProviderDn()
Specifies the name of the trust manager that is used with the Administration Connector .
Copyright 2010-2018 ForgeRock AS.