Enum StartupDependency

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ACCESS_CONTROL
      This dependency will be satisfied after the access control handler has been initialized.
      ALARMS
      This dependency will be satisfied after the alarm manager has been initialized.
      ALERT_HANDLERS
      This dependency will be satisfied after the alert handlers have been initialized.
      BACKENDS
      This dependency will be satisfied after the backends have been initialized.
      CERTIFICATE_MAPPERS
      This dependency will be satisfied after the certificate mappers have been initialized.
      CHANGE_SUBSCRIPTION_HANDLERS
      This dependency will be satisfied after the change subscription handlers have been initialized.
      CLIENT_CONNECTION_POLICIES
      This dependency will be satisfied after the client connection policies have been initialized.
      CONFIG_AUDIT_LOG
      This dependency will be satisfied after the config audit log has been initialized.
      CONNECTION_HANDLER_STARTED
      This dependency will be satisfied after the connection handlers have been started.
      CONNECTION_HANDLERS_INITIALIZED
      This dependency will be satisfied after the connection handlers have been initialized.
      CORE_CONFIG
      This dependency will be satisfied after the core configuration (the configuration properties associated with the "cn=config" entry itself) has been initialized.
      CRITERIA
      This dependency will be satisfied after the criteria subsystem has been initialized.
      CRYPTO_MANAGER_INITIALIZED
      This dependency will be satisfied after the crypto manager has been initialized.
      CRYPTO_MANAGER_SYNCHRONIZATION
      This dependency will be satisfied after crypto manager synchronization has been enabled.
      ENTRY_CACHE
      This dependency will be satisfied after the entry cache has been initialized.
      EXTENDED_OPERATION_HANDLERS
      This dependency will be satisfied after the extended operation handlers have been initialized.
      EXTERNAL_SERVERS
      This dependency will be satisfied after the external servers have been initialized.
      GAUGES
      This dependency will be satisfied after gauges have been initialized.
      GROUPS
      This dependency will be satisfied after the group implementations have been initialized.
      IDENTITY_MAPPERS
      This dependency will be satisfied after the identity mappers have been initialized.
      KEY_AND_TRUST_MANAGERS
      This dependency will be satisfied after the key manager providers and trust manager providers have been initialized.
      LOCATIONS
      This dependency will be satisfied after the locations have been initialized.
      LOG_FIELD_MAPPINGS
      This dependency will be satisfied after the log field mappings have been initialized.
      LOGGING
      This dependency will be satisfied after the log rotation policies, log retention policies, and log publishers have been initialized.
      MIB_PROVIDERS
      This dependency will be satisfied after the MIB providers have been initialized.
      MONITOR_PROVIDERS
      This dependency will be satisfied after the monitor providers have been initialized.
      PASSWORD_POLICY
      This dependency will be satisfied after the password policy components have been initialized.
      PLUGINS
      This dependency will be satisfied after the plugins have been initialized.
      PROXY_CONFIG
      This dependency will be satisfied after the proxy-related configuration has been initialized.
      REPLICATION
      This dependency will be satisfied after replication has been initialized.
      REPLICATION_ASSURANCE_POLICIES
      This dependency will be satisfied after the replication assurance policy manager has been initialized.
      SASL_MECHANISM_HANDLERS
      This dependency will be satisfied after the SASL mechanism handlers have been initialized.
      SCHEMA
      This dependency will be satisfied after all of the schema has been initialized.
      STARTUP_COMPLETE
      This dependency will be satisfied after all other startup processing has completed.
      SUBTREE_ACCESSIBILITY
      This dependency will be satisfied after the subtree accessibility manager has been initialized.
      SUBTREE_VIEWS
      This dependency will be satisfied after all the subtree views have been initialized.
      SUPPORTED_CONTROLS
      This dependency will be satisfied after the supported controls have been initialized.
      SUPPORTED_FEATURES
      This dependency will be satisfied after the supported features have been initialized.
      SYNCHRONIZATION_SERVER
      This dependency will be satisfied after the synchronization server components have been initialized.
      VIRTUAL_ATTRIBUTES
      This dependency will be satisfied after the virtual attribute providers have been initialized.
      WORK_QUEUE
      This dependency will be satisfied after the work queue has been initialized.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static StartupDependency valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static StartupDependency[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static StartupDependency[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (StartupDependency c : StartupDependency.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static StartupDependency valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null