svnauthenticationmanager.java
来自「web版的SVN客户端」· Java 代码 · 共 82 行
JAVA
82 行
/*
* Copyright (c) 2004, 2005 Polarion Software, All rights reserved.
* Email: community@polarion.org
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 (the "License"). You may not use
* this file except in compliance with the License. Copy of the License is
* located in the file LICENSE.txt in the project distribution. You may also
* obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
*
* POLARION SOFTWARE MAKES NO REPRESENTATIONS OR WARRANTIES
* ABOUT THE SUITABILITY OF THE SOFTWARE, EITHER EXPRESSED OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. POLARION SOFTWARE
* SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT
* OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
*
*/
package org.polarion.svnwebclient.data.javasvn;
import org.tmatesoft.svn.core.SVNAuthenticationException;
import org.tmatesoft.svn.core.SVNErrorCode;
import org.tmatesoft.svn.core.SVNErrorMessage;
import org.tmatesoft.svn.core.SVNException;
import org.tmatesoft.svn.core.SVNURL;
import org.tmatesoft.svn.core.auth.ISVNAuthenticationManager;
import org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider;
import org.tmatesoft.svn.core.auth.ISVNAuthenticationStorage;
import org.tmatesoft.svn.core.auth.ISVNProxyManager;
import org.tmatesoft.svn.core.auth.ISVNSSLManager;
import org.tmatesoft.svn.core.auth.SVNAuthentication;
import org.tmatesoft.svn.core.auth.SVNPasswordAuthentication;
/**
*
* @author <A HREF="mailto:svnbrowser@polarion.org">Polarion Software </A>
*/
public class SVNAuthenticationManager implements ISVNAuthenticationManager {
protected String username;
protected String password;
public SVNAuthenticationManager(String username, String password) {
this.username = username;
this.password = password;
}
public void setAuthenticationProvider(ISVNAuthenticationProvider provider) {
}
public ISVNProxyManager getProxyManager(SVNURL url) throws SVNException {
return null;
}
public ISVNSSLManager getSSLManager(SVNURL url) throws SVNException {
return null;
}
public SVNAuthentication getFirstAuthentication(String kind, String realm, SVNURL url) throws SVNException {
return new SVNPasswordAuthentication(this.username, this.password, false);
}
public SVNAuthentication getNextAuthentication(String kind, String realm, SVNURL url) throws SVNException {
throw new SVNAuthenticationException(SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE));
}
public void acknowledgeAuthentication(boolean accepted, String kind, String realm, String errorMessage,
SVNAuthentication authentication) {
}
public void setRuntimeStorage(ISVNAuthenticationStorage storage) {
}
public boolean isAuthenticationForced() {
return true;
}
public void acknowledgeAuthentication(boolean arg0, String arg1, String arg2, SVNErrorMessage arg3, SVNAuthentication arg4) {
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?