Package de.xima.fc.config
Enum EXfcConfigType
- All Implemented Interfaces:
Serializable
,Comparable<EXfcConfigType>
Enum for the different types of configuration files used by formcycle.
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionGeneral 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 TypeMethodDescriptionstatic EXfcConfigType
Returns the enum constant of this type with the specified name.static EXfcConfigType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
APPLICATION
General settings related to the formcycle application. -
CACHE
Settings related to caches, such as the form or data cache. -
CLUSTER
Settings related to the cluster configuration when using multiple master servers in a cluster. -
DATABASE
Settings related to the database configuration, such as the JDBC URL and credentials. -
KERBEROS
Settings related to the Kerberos authenticator configuration. -
LOGGING
Settings related to the logging configuration, such as the log level and log files. -
MAIL
Settings related to the system email server configuration. -
NTLMAUTH
Settings related to the NTLM authenticator configuration.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-