Class ProxyBackendCfgDefn

    • Method Detail

      • getInstance

        public static ProxyBackendCfgDefn getInstance()
        Get the Proxy Backend configuration definition singleton.
        Returns:
        Returns the Proxy Backend configuration definition singleton.
      • getAvailabilityCheckIntervalPropertyDefinition

        public DurationPropertyDefinition getAvailabilityCheckIntervalPropertyDefinition()
        Get the "availability-check-interval" property definition.

        Specifies the interval which the Proxy Backend will use to send the availability check request to decide if a server is available.

        The Proxy Backend sends an availability check request to the servers every specified interval to be informed on the availability of the server.

        Returns:
        Returns the "availability-check-interval" property definition.
      • getAvailabilityCheckSearchRequestBaseDnPropertyDefinition

        public DnPropertyDefinition getAvailabilityCheckSearchRequestBaseDnPropertyDefinition()
        Get the "availability-check-search-request-base-dn" property definition.

        Specifies the name of an entry of the application data that will be targeted by availability check requests to detect whether a remote server is available and handling requests against application data.

        By default availability check requests will attempt to read the remote server's root DSE, but the search request can target any other entry of the application data accessible by anonymous bind.

        Returns:
        Returns the "availability-check-search-request-base-dn" property definition.
      • getAvailabilityCheckSearchRequestFilterPropertyDefinition

        public StringPropertyDefinition getAvailabilityCheckSearchRequestFilterPropertyDefinition()
        Get the "availability-check-search-request-filter" property definition.

        Specifies the search filter of the availability check requests.

        By default availability check requests use the LDAP absolute true search filter which evaluates to always true. Specifying a filter requiring evaluation, will make the availability check fail if the evaluation returns zero entries and have the Proxy Backend mark the server as not available.

        Returns:
        Returns the "availability-check-search-request-filter" property definition.
      • getAvailabilityCheckTimeoutPropertyDefinition

        public DurationPropertyDefinition getAvailabilityCheckTimeoutPropertyDefinition()
        Get the "availability-check-timeout" property definition.

        Specifies the availability check request timeout that the Proxy Backend will use to decide if a server is available.

        If an availability check response is not received within the timeout, the Proxy Backend considers the server as not available to process user requests.

        Returns:
        Returns the "availability-check-timeout" property definition.
      • getBackendIdPropertyDefinition

        public StringPropertyDefinition getBackendIdPropertyDefinition()
        Get the "backend-id" property definition.

        Specifies a name to identify the associated backend.

        The name must be unique among all backends in the server. The backend ID may not be altered after the backend is created in the server.

        Returns:
        Returns the "backend-id" property definition.
      • getBaseDnPropertyDefinition

        public DnPropertyDefinition getBaseDnPropertyDefinition()
        Get the "base-dn" property definition.

        Specifies the base DN(s) for the data that the backend handles.

        A single backend may be responsible for one or more base DNs. Note that no two backends may have the same base DN although one backend may have a base DN that is below a base DN provided by another backend (similar to the use of sub-suffixes in the Sun Java System Directory Server). If any of the base DNs is subordinate to a base DN for another backend, then all base DNs for that backend must be subordinate to that same base DN. When the "route-all" property is set to "true" then the "base-dn" property is ignored.

        Returns:
        Returns the "base-dn" property definition.
      • getConnectionPoolIdleTimeoutPropertyDefinition

        public DurationPropertyDefinition getConnectionPoolIdleTimeoutPropertyDefinition()
        Get the "connection-pool-idle-timeout" property definition.

        The time out period after which unused non-core connections will be closed and removed from the connection pool.

        Returns:
        Returns the "connection-pool-idle-timeout" property definition.
      • getConnectionPoolMaxSizePropertyDefinition

        public IntegerPropertyDefinition getConnectionPoolMaxSizePropertyDefinition()
        Get the "connection-pool-max-size" property definition.

        Maximum size of the connection pool for each remote server

        Returns:
        Returns the "connection-pool-max-size" property definition.
      • getConnectionPoolMinSizePropertyDefinition

        public IntegerPropertyDefinition getConnectionPoolMinSizePropertyDefinition()
        Get the "connection-pool-min-size" property definition.

        Minimum size of the connection pool for each remote server

        Returns:
        Returns the "connection-pool-min-size" property definition.
      • getConnectionTimeoutPropertyDefinition

        public DurationPropertyDefinition getConnectionTimeoutPropertyDefinition()
        Get the "connection-timeout" property definition.

        Specifies the timeout used when connecting to servers, performing SSL negotiation, and for individual search and bind requests.

        If the timeout expires then the current operation will be aborted and retried against another LDAP server if one is available.

        Returns:
        Returns the "connection-timeout" property definition.
      • getDiscoveryIntervalPropertyDefinition

        public DurationPropertyDefinition getDiscoveryIntervalPropertyDefinition()
        Get the "discovery-interval" property definition.

        Interval between two server configuration discovery executions.

        Specifies how frequently to read the configuration of the servers in order to discover any configuration change.

        Returns:
        Returns the "discovery-interval" property definition.
      • getEnabledPropertyDefinition

        public BooleanPropertyDefinition getEnabledPropertyDefinition()
        Get the "enabled" property definition.

        Indicates whether the backend is enabled in the server.

        If a backend is not enabled, then its contents are not accessible when processing operations.

        Returns:
        Returns the "enabled" property definition.
      • getHashFunctionPropertyDefinition

        public EnumPropertyDefinition<ProxyBackendCfgDefn.HashFunction> getHashFunctionPropertyDefinition()
        Get the "hash-function" property definition.

        Specifies the hash function which will be used for data distribution.

        This setting only applies to data distribution. Once this server is deployed, this setting must not be modified. Doing so could result in data loss. The hash function is used by the router to map incoming requests to a target server based on the request's target DN. The role of the hash function is to ensure that the flow of incoming requests is evenly distributed on the set of servers.

        Returns:
        Returns the "hash-function" property definition.
      • getJavaClassPropertyDefinition

        public ClassPropertyDefinition getJavaClassPropertyDefinition()
        Get the "java-class" property definition.

        Specifies the fully-qualified name of the Java class that provides the backend implementation.

        Returns:
        Returns the "java-class" property definition.
      • getKeepAliveIntervalPropertyDefinition

        public DurationPropertyDefinition getKeepAliveIntervalPropertyDefinition()
        Get the "keep-alive-interval" property definition.

        Specifies the keep-alive interval that the Proxy Backend will use for connections with the remote servers.

        The Proxy Backend sends a keep-alive request to the servers every specified interval to prevent the connection from appearing idle and being forcefully closed.

        Returns:
        Returns the "keep-alive-interval" property definition.
      • getKeepAliveSearchRequestBaseDnPropertyDefinition

        public DnPropertyDefinition getKeepAliveSearchRequestBaseDnPropertyDefinition()
        Get the "keep-alive-search-request-base-dn" property definition.

        Specifies the name of the entry that will be targeted by keep-alive requests.

        By default keep-alive requests will attempt to read the remote server's root DSE, but the search request can target any other entry accessible by anonymous bind.

        Returns:
        Returns the "keep-alive-search-request-base-dn" property definition.
      • getKeepAliveSearchRequestFilterPropertyDefinition

        public StringPropertyDefinition getKeepAliveSearchRequestFilterPropertyDefinition()
        Get the "keep-alive-search-request-filter" property definition.

        Specifies the search filter of the keep-alive requests.

        By default keep-alive requests use the LDAP absolute true search filter, which evaluates to always true. Specifying a filter requiring evaluation, will make the keep-alive fail if the evaluation returns zero entries.

        Returns:
        Returns the "keep-alive-search-request-filter" property definition.
      • getKeepAliveTimeoutPropertyDefinition

        public DurationPropertyDefinition getKeepAliveTimeoutPropertyDefinition()
        Get the "keep-alive-timeout" property definition.

        Specifies the keep-alive request timeout that the Proxy Backend will use for connections with the remote servers.

        If a keep-alive answer is not received within the timeout, the Proxy Backend closes the unresponsive connection and connects to another server.

        Returns:
        Returns the "keep-alive-timeout" property definition.
      • getPartitionBaseDnPropertyDefinition

        public DnPropertyDefinition getPartitionBaseDnPropertyDefinition()
        Get the "partition-base-dn" property definition.

        Specifies the base DN(s) which is used for affinity load-balancing and data distribution

        Within a single shard, "affinity" load-balancing uses this setting to provide consistency for add/delete operations targeting entries within the same sub-tree. Entries immediately subordinate to the partition base DNs will be considered to be the root of a sub-tree whose entries belong to the same shard. For example, a partition base DN of "ou=people,dc=example,dc=com" would mean that "uid=bjensen,ou=people,dc=example,dc=com" and "deviceid=12345,uid=bjensen,ou=people,dc=example,dc=com" both belong to the same shard, and all operations targeting them would be routed to the same remote server. When applied to data distribution across multiple shards, this setting consistently routes operations targeting an entry below the partition DN to the same shard. Requests targeting the partition DN or above are routed to any shard. Search requests are routed to all shards unless their scope is under the partition DN. For example, if the partition base DN is set to "ou=people,dc=example,dc=com", a search with base DN "uid=bjensen,ou=people,dc=example,dc=com" or "deviceid=12345,uid=bjensen,ou=people,dc=example,dc=com" is always routed to the same shard. A search with base DN "ou=people,dc=example,dc=com" is routed to all shards.

        Returns:
        Returns the "partition-base-dn" property definition.
      • getProxyUserDnPropertyDefinition

        public DnPropertyDefinition getProxyUserDnPropertyDefinition()
        Get the "proxy-user-dn" property definition.

        The bind DN that is used to forward LDAP requests to remote servers.

        The proxy connects to the remote server using this bind DN and uses the proxied authorization control to forward requests on behalf of the proxy users. This bind DN must exist on all the remote servers.

        Returns:
        Returns the "proxy-user-dn" property definition.
      • getProxyUserPasswordPropertyDefinition

        public StringPropertyDefinition getProxyUserPasswordPropertyDefinition()
        Get the "proxy-user-password" property definition.

        Clear-text password associated with the proxy bind DN.

        The proxy password must be the same on all the remote servers.

        Returns:
        Returns the "proxy-user-password" property definition.
      • getRouteAllPropertyDefinition

        public BooleanPropertyDefinition getRouteAllPropertyDefinition()
        Get the "route-all" property definition.

        Route requests to all discovered public naming contexts.

        When the "route-all" property is set to "true" then the "base-dn" property is ignored.

        Returns:
        Returns the "route-all" property definition.
      • getShardPropertyDefinition

        public AggregationPropertyDefinition<ServiceDiscoveryMechanismCfgClient,​ServiceDiscoveryMechanismCfg> getShardPropertyDefinition()
        Get the "shard" property definition.

        Specifies one or more shards which will be used for distributing data and requests.

        When multiple shards are configured, this setting consistently routes write requests for the same target entry below the partition DN to the same shard. Requests targeting an entry under the partition DN are always routed to a single shard. Requests targeting the partition DN or above are routed to any shard. Search requests are routed to all shards unless their scope is under the partition DN. For example, a search with base DN "uid=bjensen,ou=people,dc=example,dc=com" or "deviceid=12345,uid=bjensen,ou=people,dc=example,dc=com" is always routed to the same shard. A search with base DN "ou=people,dc=example,dc=com" is routed to all shards.

        Returns:
        Returns the "shard" property definition.
      • getSslCertNicknamePropertyDefinition

        public StringPropertyDefinition getSslCertNicknamePropertyDefinition()
        Get the "ssl-cert-nickname" property definition.

        Specifies the nicknames (also called the aliases) of the keys or key pairs that the Proxy Backend 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 Proxy Backend is configured to use SSL.

        Returns:
        Returns the "ssl-cert-nickname" property definition.
      • getUseSaslExternalPropertyDefinition

        public BooleanPropertyDefinition getUseSaslExternalPropertyDefinition()
        Get the "use-sasl-external" property definition.

        Indicates whether the Proxy Backend should use certificate based authentication when communicating with backend servers.

        If enabled, the Proxy Backend will use mutual TLS when connecting to backend servers. Once the TLS handshake has completed, a SASL/External LDAP bind request will be sent in order to associate the TLS client certificate with an LDAP account on the remote backend server. A key manager provider containing the client certificate must be configured in order to use this feature.

        Returns:
        Returns the "use-sasl-external" property definition.