Class LdifConnectionHandlerCfgDefn


  • public final class LdifConnectionHandlerCfgDefn
    extends ManagedObjectDefinition<LdifConnectionHandlerCfgClient,​LdifConnectionHandlerCfg>
    An interface for querying the LDIF Connection Handler managed object definition meta information.

    The LDIF Connection Handler is used to process changes in the server using internal operations, where the changes to process are read from an LDIF file.

    • Method Detail

      • getInstance

        public static LdifConnectionHandlerCfgDefn getInstance()
        Get the LDIF Connection Handler configuration definition singleton.
        Returns:
        Returns the LDIF Connection Handler configuration definition singleton.
      • getAllowedClientPropertyDefinition

        public IpAddressMaskPropertyDefinition getAllowedClientPropertyDefinition()
        Get the "allowed-client" property definition.

        A set of clients who will be allowed to establish connections to this LDIF Connection Handler.

        Valid values include a host name, a fully qualified domain name, a domain name, an IP address, or a subnetwork with subnetwork mask. Specifying a value for this property in a connection handler will override any value set in the global configuration.

        Returns:
        Returns the "allowed-client" property definition.
      • getDeniedClientPropertyDefinition

        public IpAddressMaskPropertyDefinition getDeniedClientPropertyDefinition()
        Get the "denied-client" property definition.

        A set of clients who are not allowed to establish connections to this LDIF Connection Handler.

        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. Specifying a value for this property in a connection handler will override any value set in the global configuration.

        Returns:
        Returns the "denied-client" property definition.
      • getEnabledPropertyDefinition

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

        Indicates whether the LDIF Connection Handler is enabled.

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

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

        Specifies the fully-qualified name of the Java class that provides the LDIF Connection Handler implementation.

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

        public StringPropertyDefinition getLdifDirectoryPropertyDefinition()
        Get the "ldif-directory" property definition.

        Specifies the path to the directory in which the LDIF files should be placed.

        Returns:
        Returns the "ldif-directory" property definition.
      • getPollIntervalPropertyDefinition

        public DurationPropertyDefinition getPollIntervalPropertyDefinition()
        Get the "poll-interval" property definition.

        Specifies how frequently the LDIF connection handler should check the LDIF directory to determine whether a new LDIF file has been added.

        Returns:
        Returns the "poll-interval" property definition.
      • getRestrictedClientPropertyDefinition

        public IpAddressMaskPropertyDefinition getRestrictedClientPropertyDefinition()
        Get the "restricted-client" property definition.

        A set of clients who will be limited to the maximum number of connections specified by the "restricted-client-connection-limit" property.

        Valid values include a host name, a fully qualified domain name, a domain name, an IP address, or a subnetwork with subnetwork mask. Specifying a value for this property in a connection handler will override any value set in the global configuration.

        Returns:
        Returns the "restricted-client" property definition.
      • getRestrictedClientConnectionLimitPropertyDefinition

        public IntegerPropertyDefinition getRestrictedClientConnectionLimitPropertyDefinition()
        Get the "restricted-client-connection-limit" property definition.

        Specifies the maximum number of connections a restricted client can open at the same time to this LDIF Connection Handler.

        Once Directory Server accepts the specified number of connections from a client specified in restricted-client, any additional connection will be rejected. The number of connections is maintained by IP address. Specifying a value for this property in a connection handler will override any value set in the global configuration.

        Returns:
        Returns the "restricted-client-connection-limit" property definition.