Removed the old connection parameters

This commit is contained in:
mathias 2021-08-27 13:27:54 +02:00
parent f29731cdd2
commit 97431c7c1f
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

@ -1,34 +0,0 @@
package de.gnmyt.sqltoolkit.types;
public enum LoginParam {
DEFAULT("useSSL=false&autoReconnect=true&useUnicode=yes&characterEncoding=UTF-8&useTimezone=true&serverTimezone=UTC"),
NO_SSL("useSSL=false"),
USE_SSL("useSSL=true"),
AUTO_RECONNECT("autoReconnect=true"),
UTF8_ENCODING("characterEncoding=UTF-8"),
USE_UNICODE("useUnicode=yes"),
USE_TIMEZONE("useTimezone=true"),
TIMEZONE_UTC("serverTimezone=UTC");
private final String value;
/**
* Basic constructor for the LoginParam enum
*
* @param value JDBC parameter
*/
LoginParam(String value) {
this.value = value;
}
/**
* Get the JDBC value
*
* @return the value
*/
public String getValue() {
return this.value;
}
}