use of org.jetbrains.idea.svn.auth.SvnInteractiveAuthenticationProvider in project intellij-community by JetBrains.
the class SvnConfiguration method getInteractiveManager.
public SvnAuthenticationManager getInteractiveManager(@NotNull SvnVcs svnVcs) {
if (myInteractiveManager == null) {
myInteractiveManager = new SvnAuthenticationManager(svnVcs, new File(getConfigurationDirectory()));
myInteractiveManager.setRuntimeStorage(RUNTIME_AUTH_CACHE);
myInteractiveProvider = new SvnInteractiveAuthenticationProvider(svnVcs, myInteractiveManager);
myInteractiveManager.setAuthenticationProvider(myInteractiveProvider);
}
return myInteractiveManager;
}
Aggregations