60 lines
2.3 KiB
Java
60 lines
2.3 KiB
Java
package fr.xephi.authme.settings.properties;
|
|
|
|
import ch.jalu.configme.Comment;
|
|
import ch.jalu.configme.SectionComments;
|
|
import ch.jalu.configme.SettingsHolder;
|
|
import ch.jalu.configme.properties.Property;
|
|
import com.google.common.collect.ImmutableMap;
|
|
|
|
import java.util.Map;
|
|
|
|
import static ch.jalu.configme.properties.PropertyInitializer.newProperty;
|
|
|
|
public final class ConverterSettings implements SettingsHolder {
|
|
|
|
@Comment("Rakamak file name")
|
|
public static final Property<String> RAKAMAK_FILE_NAME =
|
|
newProperty("Converter.Rakamak.fileName", "users.rak");
|
|
|
|
@Comment("Rakamak use IP?")
|
|
public static final Property<Boolean> RAKAMAK_USE_IP =
|
|
newProperty("Converter.Rakamak.useIP", false);
|
|
|
|
@Comment("Rakamak IP file name")
|
|
public static final Property<String> RAKAMAK_IP_FILE_NAME =
|
|
newProperty("Converter.Rakamak.ipFileName", "UsersIp.rak");
|
|
|
|
@Comment("CrazyLogin database file name")
|
|
public static final Property<String> CRAZYLOGIN_FILE_NAME =
|
|
newProperty("Converter.CrazyLogin.fileName", "accounts.db");
|
|
|
|
@Comment("LoginSecurity: convert from SQLite; if false we use MySQL")
|
|
public static final Property<Boolean> LOGINSECURITY_USE_SQLITE =
|
|
newProperty("Converter.loginSecurity.useSqlite", true);
|
|
|
|
@Comment("LoginSecurity MySQL: database host")
|
|
public static final Property<String> LOGINSECURITY_MYSQL_HOST =
|
|
newProperty("Converter.loginSecurity.mySql.host", "");
|
|
|
|
@Comment("LoginSecurity MySQL: database name")
|
|
public static final Property<String> LOGINSECURITY_MYSQL_DATABASE =
|
|
newProperty("Converter.loginSecurity.mySql.database", "");
|
|
|
|
@Comment("LoginSecurity MySQL: database user")
|
|
public static final Property<String> LOGINSECURITY_MYSQL_USER =
|
|
newProperty("Converter.loginSecurity.mySql.user", "");
|
|
|
|
@Comment("LoginSecurity MySQL: password for database user")
|
|
public static final Property<String> LOGINSECURITY_MYSQL_PASSWORD =
|
|
newProperty("Converter.loginSecurity.mySql.password", "");
|
|
|
|
private ConverterSettings() {
|
|
}
|
|
|
|
@SectionComments
|
|
public static Map<String, String[]> buildSectionComments() {
|
|
return ImmutableMap.of("Converter",
|
|
new String[]{"Converter settings: see https://github.com/AuthMe/AuthMeReloaded/wiki/Converters"});
|
|
}
|
|
}
|