tech.ydb.jdbc.settings.YdbClientProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-jdbc-driver Show documentation
Show all versions of ydb-jdbc-driver Show documentation
JDBC Driver over YDB Java SDK
package tech.ydb.jdbc.settings;
import java.util.Map;
import javax.annotation.Nullable;
public class YdbClientProperties {
private final Map, ParsedProperty> params;
public YdbClientProperties(Map, ParsedProperty> params) {
this.params = params;
}
@Nullable
public ParsedProperty getProperty(YdbClientProperty> property) {
return params.get(property);
}
public Map, ParsedProperty> getParams() {
return params;
}
}