* {@link ISVNAuthenticationManager} doesn't expose the setAuthStoreHandler, so we need to downcast.
*/
public static void install(ISVNAuthenticationManager sam) {
if (sam instanceof DefaultSVNAuthenticationManager) {
DefaultSVNAuthenticationManager dsam = (DefaultSVNAuthenticationManager) sam;
dsam.setAuthenticationStorageOptions(new ISVNAuthenticationStorageOptions() {
public boolean isNonInteractive() throws SVNException {
return true;
}
public ISVNAuthStoreHandler getAuthStoreHandler() throws SVNException {