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

32 lines
461 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,
/**
* SMTP server configuration.
*/
SMTP_HOSTNAME,
SMTP_PORT,
SMTP_FROM,
SMTP_USERNAME,
SMTP_PASSWORD
2013-07-27 18:33:20 +02:00
}