public void init()

in dekaf-jdbc/src/impl/JdbcFacade.java [65:90]


    public void init(final @NotNull Settings settings)
            throws DBInitializationException
    {
        Settings ds = settings.getNest("driver");
        if (ds != null) {
            driverPath = ds.getString("path");
            driverJars = ds.getStrings("jars");
            driverClassName = ds.getString("class");
        }
        else {
            driverJars = null;
            driverClassName = null;
        }

        Settings js = settings.getNest("jdbc");
        if (js != null) {
            jdbcConnectionString = js.getString("connection-string");
            jdbcParameters = js.getNest("parameters");
        }
        else {
            jdbcConnectionString = null;
            jdbcParameters = null;
        }

        obtainDriver();
    }