Enum EXfcConfigType

java.lang.Object
java.lang.Enum<EXfcConfigType>
de.xima.fc.config.EXfcConfigType
All Implemented Interfaces:
Serializable, Comparable<EXfcConfigType>

public enum EXfcConfigType extends Enum<EXfcConfigType>
Enum for the different types of configuration files used by formcycle.
Author:
XIMA MEDIA GmbH
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    General settings related to the formcycle application.
    Settings related to caches, such as the form or data cache.
    Settings related to the cluster configuration when using multiple master servers in a cluster.
    Settings related to the database configuration, such as the JDBC URL and credentials.
    Settings related to the Kerberos authenticator configuration.
    Settings related to the logging configuration, such as the log level and log files.
    Settings related to the system email server configuration.
    Settings related to the NTLM authenticator configuration.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this type with the specified name.
    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
  • Enum Constant Details

    • 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 Details

    • values

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