Enum EXfcConfigType

    • Enum Constant Detail

      • APPLICATION

        public static final EXfcConfigType APPLICATION
        General settings related to the formcycle application.
      • CACHE

        public static final EXfcConfigType CACHE
        Settings related to caches, such as the form or data cache.
      • CLUSTER

        public static final EXfcConfigType CLUSTER
        Settings related to the cluster configuration when using multiple master servers in a cluster.
      • DATABASE

        public static final EXfcConfigType DATABASE
        Settings related to the database configuration, such as the JDBC URL and credentials.
      • KERBEROS

        public static final EXfcConfigType KERBEROS
        Settings related to the Kerberos authenticator configuration.
      • LOGGING

        public static final EXfcConfigType LOGGING
        Settings related to the logging configuration, such as the log level and log files.
      • MAIL

        public static final EXfcConfigType MAIL
        Settings related to the system email server configuration.
      • NTLMAUTH

        public static final EXfcConfigType NTLMAUTH
        Settings related to the NTLM authenticator configuration.
    • Method Detail

      • values

        public static EXfcConfigType[] 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 (EXfcConfigType c : EXfcConfigType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EXfcConfigType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null