Package io.mangoo.enums
Enum Key
- java.lang.Object
-
- java.lang.Enum<Key>
-
- io.mangoo.enums.Key
-
- All Implemented Interfaces:
Serializable,Comparable<Key>
public enum Key extends Enum<Key>
Key strings for reading configuration properties of application- Author:
- svenkubiak
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static KeyvalueOf(String name)Returns the enum constant of this type with the specified name.static Key[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPLICATION_ADMIN_ENABLE
public static final Key APPLICATION_ADMIN_ENABLE
-
APPLICATION_ADMIN_HEALTH_ENABLE
public static final Key APPLICATION_ADMIN_HEALTH_ENABLE
-
APPLICATION_ADMIN_HEALTH_TOKEN
public static final Key APPLICATION_ADMIN_HEALTH_TOKEN
-
APPLICATION_ADMIN_PASSWORD
public static final Key APPLICATION_ADMIN_PASSWORD
-
APPLICATION_ADMIN_SECRET
public static final Key APPLICATION_ADMIN_SECRET
-
APPLICATION_ADMIN_USERNAME
public static final Key APPLICATION_ADMIN_USERNAME
-
APPLICATION_CONFIG
public static final Key APPLICATION_CONFIG
-
APPLICATION_CONTROLLER
public static final Key APPLICATION_CONTROLLER
-
APPLICATION_LANGUAGE
public static final Key APPLICATION_LANGUAGE
-
APPLICATION_MINIFY_CSS
public static final Key APPLICATION_MINIFY_CSS
-
APPLICATION_MINIFY_JS
public static final Key APPLICATION_MINIFY_JS
-
APPLICATION_MODE
public static final Key APPLICATION_MODE
-
APPLICATION_NAME
public static final Key APPLICATION_NAME
-
APPLICATION_PRIVATEKEY
public static final Key APPLICATION_PRIVATEKEY
-
APPLICATION_PUBLICKEY
public static final Key APPLICATION_PUBLICKEY
-
APPLICATION_SECRET
public static final Key APPLICATION_SECRET
-
APPLICATION_TEMPLATEENGINE
public static final Key APPLICATION_TEMPLATEENGINE
-
APPLICATION_THREADPOOL
public static final Key APPLICATION_THREADPOOL
-
AUTHENTICATION_COOKIE_EXPIRES
public static final Key AUTHENTICATION_COOKIE_EXPIRES
-
AUTHENTICATION_COOKIE_NAME
public static final Key AUTHENTICATION_COOKIE_NAME
-
AUTHENTICATION_COOKIE_REMEMBER_EXPIRES
public static final Key AUTHENTICATION_COOKIE_REMEMBER_EXPIRES
-
AUTHENTICATION_COOKIE_SECRET
public static final Key AUTHENTICATION_COOKIE_SECRET
-
AUTHENTICATION_COOKIE_SECURE
public static final Key AUTHENTICATION_COOKIE_SECURE
-
AUTHENTICATION_COOKIE_TOKEN_EXPIRES
public static final Key AUTHENTICATION_COOKIE_TOKEN_EXPIRES
-
AUTHENTICATION_LOCK
public static final Key AUTHENTICATION_LOCK
-
AUTHENTICATION_REDIRECT
public static final Key AUTHENTICATION_REDIRECT
-
CACHE_CLUSTER_ENABLE
public static final Key CACHE_CLUSTER_ENABLE
-
CACHE_CLUSTER_URL
public static final Key CACHE_CLUSTER_URL
-
CONNECTOR_AJP_HOST
public static final Key CONNECTOR_AJP_HOST
-
CONNECTOR_AJP_PORT
public static final Key CONNECTOR_AJP_PORT
-
CONNECTOR_HTTP_HOST
public static final Key CONNECTOR_HTTP_HOST
-
CONNECTOR_HTTP_PORT
public static final Key CONNECTOR_HTTP_PORT
-
CORS_ALLOWORIGIN
public static final Key CORS_ALLOWORIGIN
-
CORS_ENABLE
public static final Key CORS_ENABLE
-
CORS_HEADERS_ALLOWCREDENTIALS
public static final Key CORS_HEADERS_ALLOWCREDENTIALS
-
CORS_HEADERS_ALLOWHEADERS
public static final Key CORS_HEADERS_ALLOWHEADERS
-
CORS_HEADERS_ALLOWMETHODS
public static final Key CORS_HEADERS_ALLOWMETHODS
-
CORS_HEADERS_EXPOSEHEADERS
public static final Key CORS_HEADERS_EXPOSEHEADERS
-
CORS_HEADERS_MAXAGE
public static final Key CORS_HEADERS_MAXAGE
-
CORS_URLPATTERN
public static final Key CORS_URLPATTERN
-
FLASH_COOKIE_NAME
public static final Key FLASH_COOKIE_NAME
-
FLASH_COOKIE_SECRET
public static final Key FLASH_COOKIE_SECRET
-
I18N_COOKIE_NAME
public static final Key I18N_COOKIE_NAME
-
MANGOOIO_WARNINGS
public static final Key MANGOOIO_WARNINGS
-
METRICS_ENABLE
public static final Key METRICS_ENABLE
-
SCHEDULER_AUTOSTART
public static final Key SCHEDULER_AUTOSTART
-
SCHEDULER_ENABLE
public static final Key SCHEDULER_ENABLE
-
SCHEDULER_PACKAGE
public static final Key SCHEDULER_PACKAGE
-
SESSION_COOKIE_EXPIRES
public static final Key SESSION_COOKIE_EXPIRES
-
SESSION_COOKIE_NAME
public static final Key SESSION_COOKIE_NAME
-
SESSION_COOKIE_SECRET
public static final Key SESSION_COOKIE_SECRET
-
SESSION_COOKIE_SECURE
public static final Key SESSION_COOKIE_SECURE
-
SESSION_COOKIE_TOKEN_EXPIRES
public static final Key SESSION_COOKIE_TOKEN_EXPIRES
-
SMTP_AUTHENTICATION
public static final Key SMTP_AUTHENTICATION
-
SMTP_DEBUG
public static final Key SMTP_DEBUG
-
SMTP_FROM
public static final Key SMTP_FROM
-
SMTP_HOST
public static final Key SMTP_HOST
-
SMTP_PASSWORD
public static final Key SMTP_PASSWORD
-
SMTP_PORT
public static final Key SMTP_PORT
-
SMTP_PROTOCOL
public static final Key SMTP_PROTOCOL
-
SMTP_USERNAME
public static final Key SMTP_USERNAME
-
UNDERTOW_MAX_ENTITY_SIZE
public static final Key UNDERTOW_MAX_ENTITY_SIZE
-
-
Method Detail
-
values
public static Key[] 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 (Key c : Key.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Key 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
-
-