int maxPoolSize = ConfigurationEditorUtil.validateIntegerInputValue(maxPoolSizeTextField, "Max Connection Pool Size", 3, 20, "");
configuration.setIdleTimeToDisconnect(idleTimeToDisconnect);
Project project = getConfiguration().getProject();
if (environmentChanged) {
EnvironmentChangeListener listener = EventManager.notify(project, EnvironmentChangeListener.TOPIC);
listener.environmentConfigChanged(newEnvironmentTypeId);
}
if (settingsChanged) {
ConnectionStatusListener listener = EventManager.notify(project, ConnectionStatusListener.TOPIC);
listener.statusChanged(connectionId);
}
}