Search in sources :

Example 1 with DatabaseConnectionPoolParameter

use of org.pentaho.di.core.database.DatabaseConnectionPoolParameter in project pentaho-kettle by pentaho.

the class DataHandler method setDefaultPoolParameters.

private void setDefaultPoolParameters() {
    if (poolParameterTree != null) {
        for (DatabaseConnectionPoolParameter parameter : BaseDatabaseMeta.poolingParameters) {
            XulTreeRow row = poolParameterTree.getRootChildren().addNewRow();
            row.addCellText(0, "false");
            row.addCellText(1, parameter.getParameter());
            row.addCellText(2, parameter.getDefaultValue());
        }
    }
}
Also used : DatabaseConnectionPoolParameter(org.pentaho.di.core.database.DatabaseConnectionPoolParameter) XulTreeRow(org.pentaho.ui.xul.containers.XulTreeRow)

Aggregations

DatabaseConnectionPoolParameter (org.pentaho.di.core.database.DatabaseConnectionPoolParameter)1 XulTreeRow (org.pentaho.ui.xul.containers.XulTreeRow)1