diff --git a/src/main/java/de/gnmyt/sqltoolkit/types/LoginParam.java b/src/main/java/de/gnmyt/sqltoolkit/types/LoginParam.java deleted file mode 100644 index 5936d71..0000000 --- a/src/main/java/de/gnmyt/sqltoolkit/types/LoginParam.java +++ /dev/null @@ -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; - } - -}