* a user's password
* @return a default implementation of the credentials and servers
* configuration driver interface
*/
public static ISVNAuthenticationManager createDefaultAuthenticationManager(File configDir, String userName, String password) {
DefaultSVNOptions options = createDefaultOptions(configDir, true);
boolean store = options.isAuthStorageEnabled();
return createDefaultAuthenticationManager(configDir, userName, password, store);
}