docs/docs-core/src/main/java/com/sismics/docs/core/constant/ConfigType.java

64 lines
995 B
Java
Raw Normal View History

2013-07-27 18:33:20 +02:00
package com.sismics.docs.core.constant;
/**
* Configuration parameters.
*
* @author jtremeaux
*/
public enum ConfigType {
/**
* Lucene directory storage type.
*/
LUCENE_DIRECTORY_STORAGE,
/**
* Theme configuration.
*/
2016-05-28 23:09:52 +02:00
THEME,
/**
* Guest login.
*/
2017-11-17 17:01:08 +01:00
GUEST_LOGIN,
2018-02-22 12:57:33 +01:00
/**
* Default language.
*/
DEFAULT_LANGUAGE,
2017-11-17 17:01:08 +01:00
/**
* SMTP server configuration.
*/
SMTP_HOSTNAME,
SMTP_PORT,
SMTP_FROM,
SMTP_USERNAME,
2018-02-27 14:58:37 +01:00
SMTP_PASSWORD,
/**
* Inbox scanning configuration.
*/
INBOX_ENABLED,
INBOX_HOSTNAME,
INBOX_PORT,
INBOX_USERNAME,
INBOX_PASSWORD,
INBOX_FOLDER,
INBOX_TAG,
INBOX_AUTOMATIC_TAGS,
INBOX_DELETE_IMPORTED,
/**
* LDAP connection.
*/
LDAP_ENABLED,
LDAP_HOST,
LDAP_PORT,
2023-03-21 21:56:14 +01:00
LDAP_USESSL,
LDAP_ADMIN_DN,
LDAP_ADMIN_PASSWORD,
LDAP_BASE_DN,
LDAP_FILTER,
LDAP_DEFAULT_EMAIL,
LDAP_DEFAULT_STORAGE
2013-07-27 18:33:20 +02:00
}