Package de.xima.fc.config
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 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 Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EXfcConfigType
valueOf(String name)
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 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 nameNullPointerException
- if the argument is null
-
-