Package | Description |
---|---|
org.tmatesoft.svn.cli | |
org.tmatesoft.svn.core.auth |
This package contains interfaces/classes used by the library to
authenticate a user to a repository server.
|
org.tmatesoft.svn.core.internal.io.dav.http | |
org.tmatesoft.svn.core.internal.io.svn | |
org.tmatesoft.svn.core.internal.io.svn.sasl | |
org.tmatesoft.svn.core.internal.wc | |
org.tmatesoft.svn.core.javahl |
This package provides an implementation of the native Subversion javahl
binding interface SVNClientInterface that is distributed within
the org.tigris.subversion.javahl package.
|
org.tmatesoft.svn.core.javahl17 |
Modifier and Type | Method and Description |
---|---|
SVNAuthentication |
SVNConsoleAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
Modifier and Type | Method and Description |
---|---|
boolean |
SVNConsoleAuthenticationProvider.canStorePlainTextPassphrases(java.lang.String realm,
SVNAuthentication auth) |
boolean |
SVNConsoleAuthenticationProvider.canStorePlainTextPasswords(java.lang.String realm,
SVNAuthentication auth) |
SVNAuthentication |
SVNConsoleAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
Modifier and Type | Class and Description |
---|---|
class |
SVNPasswordAuthentication
The SVNPasswordAuthentication class represents a simple
user credential pair - a username and password.
|
class |
SVNSSHAuthentication
The SVNSSHAuthentication class represents a kind of credentials used
to authenticate a user over an SSH tunnel.
|
class |
SVNSSLAuthentication
The SVNSSLAuthentication class represents user's credentials used
to authenticate a user in secure connections.
|
class |
SVNUserNameAuthentication
The SVNUserNameAuthentication class represents a simple
authentication credential class that uses only a username to
authenticate a user.
|
Modifier and Type | Field and Description |
---|---|
private java.util.List<SVNAuthentication> |
BasicAuthenticationManager.myPasswordAuthentications |
private java.util.List<SVNAuthentication> |
BasicAuthenticationManager.mySSHAuthentications |
private java.util.List<SVNAuthentication> |
BasicAuthenticationManager.mySSLAuthentications |
private java.util.List<SVNAuthentication> |
BasicAuthenticationManager.myUserNameAuthentications |
Modifier and Type | Method and Description |
---|---|
SVNAuthentication |
SVNSSHAuthentication.copy() |
SVNAuthentication |
SVNAuthentication.copy()
Creates a deep copy of this credentials object.
|
SVNAuthentication |
SVNUserNameAuthentication.copy() |
SVNAuthentication |
SVNPasswordAuthentication.copy() |
SVNAuthentication |
SVNSSLAuthentication.copy() |
SVNAuthentication |
BasicAuthenticationManager.getFirstAuthentication(java.lang.String kind,
java.lang.String realm,
SVNURL url)
Returns the first user's authentication credentials.
|
SVNAuthentication |
ISVNAuthenticationManager.getFirstAuthentication(java.lang.String kind,
java.lang.String realm,
SVNURL url)
Retrieves the first user credential.
|
SVNAuthentication |
BasicAuthenticationManager.getNextAuthentication(java.lang.String kind,
java.lang.String realm,
SVNURL url)
Returns next user authentication credentials.
|
SVNAuthentication |
ISVNAuthenticationManager.getNextAuthentication(java.lang.String kind,
java.lang.String realm,
SVNURL url)
Retrieves the next user credential if the first try failed.
|
SVNAuthentication |
ISVNAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored)
Returns a next user credential of the specified kind for the given
authentication realm.
|
Modifier and Type | Method and Description |
---|---|
void |
BasicAuthenticationManager.acknowledgeAuthentication(boolean accepted,
java.lang.String kind,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication authentication)
Does nothing.
|
void |
ISVNAuthenticationManager.acknowledgeAuthentication(boolean accepted,
java.lang.String kind,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication authentication)
Accepts the given authentication if it was successfully accepted by a
repository server, or not if authentication failed.
|
void |
ISVNAuthenticationManagerExt.acknowledgeAuthentication(boolean accepted,
java.lang.String kind,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication authentication,
SVNURL accessedLocation) |
static void |
BasicAuthenticationManager.acknowledgeAuthentication(boolean accepted,
java.lang.String kind,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication authentication,
SVNURL accessedURL,
ISVNAuthenticationManager authManager)
Utility method to acknowledge successful or failed authentication attempt
|
static BasicAuthenticationManager |
BasicAuthenticationManager.newInstance(SVNAuthentication[] credentials)
Creates an auth manager given user credentials to use.
|
SVNAuthentication |
ISVNAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored)
Returns a next user credential of the specified kind for the given
authentication realm.
|
void |
BasicAuthenticationManager.setAuthentications(SVNAuthentication[] authentications)
Sets the given user credentials to this manager.
|
Modifier and Type | Method and Description |
---|---|
private void |
BasicAuthenticationManager.dismissSensitiveData(java.util.List<SVNAuthentication> auths) |
Constructor and Description |
---|
BasicAuthenticationManager(SVNAuthentication[] authentications)
Creates an auth manager given user credentials to use.
|
Modifier and Type | Field and Description |
---|---|
private SVNAuthentication |
HTTPConnection.myLastValidAuth |
Modifier and Type | Method and Description |
---|---|
SVNAuthentication |
IHTTPConnection.getLastValidCredentials() |
SVNAuthentication |
HTTPConnection.getLastValidCredentials() |
Modifier and Type | Field and Description |
---|---|
private SVNAuthentication |
SVNConnection.myAuthentication |
Modifier and Type | Method and Description |
---|---|
SVNAuthentication |
SVNPlainAuthenticator.authenticate(java.util.List mechs,
java.lang.String realm,
SVNRepositoryImpl repos) |
abstract SVNAuthentication |
SVNAuthenticator.authenticate(java.util.List mechs,
java.lang.String realm,
SVNRepositoryImpl repository) |
Modifier and Type | Field and Description |
---|---|
private SVNAuthentication |
SVNSaslAuthenticator.myAuthentication |
private SVNAuthentication |
SVNSaslAuthenticator.SVNCallbackHandler.myAuthentication |
Modifier and Type | Method and Description |
---|---|
SVNAuthentication |
SVNSaslAuthenticator.authenticate(java.util.List mechs,
java.lang.String realm,
SVNRepositoryImpl repository) |
Constructor and Description |
---|
SVNCallbackHandler(java.lang.String realm,
SVNAuthentication auth) |
Modifier and Type | Field and Description |
---|---|
private SVNAuthentication |
DefaultSVNAuthenticationManager.myLastLoadedAuth |
private SVNAuthentication |
DefaultSVNAuthenticationManager.myPreviousAuthentication |
Modifier and Type | Method and Description |
---|---|
SVNAuthentication |
DefaultSVNAuthenticationManager.getFirstAuthentication(java.lang.String kind,
java.lang.String realm,
SVNURL url) |
SVNAuthentication |
DefaultSVNAuthenticationManager.getNextAuthentication(java.lang.String kind,
java.lang.String realm,
SVNURL url) |
SVNAuthentication |
DefaultSVNAuthenticationManager.DumbAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
SVNAuthentication |
DefaultSVNAuthenticationManager.CacheAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
SVNAuthentication |
DefaultSVNPersistentAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
Modifier and Type | Method and Description |
---|---|
void |
DefaultSVNAuthenticationManager.acknowledgeAuthentication(boolean accepted,
java.lang.String kind,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication authentication) |
boolean |
ISVNAuthStoreHandler.canStorePlainTextPassphrases(java.lang.String realm,
SVNAuthentication auth) |
boolean |
ISVNAuthStoreHandler.canStorePlainTextPasswords(java.lang.String realm,
SVNAuthentication auth) |
private java.lang.String |
DefaultSVNConnectionOptions.getStorePlainTextPassphraseOption(SVNAuthentication auth) |
private java.lang.String |
DefaultSVNConnectionOptions.getStorePlainTextPasswordOption(SVNAuthentication auth) |
boolean |
DefaultSVNConnectionOptions.isStorePlainTextPassphrases(java.lang.String realm,
SVNAuthentication auth) |
boolean |
DefaultSVNAuthenticationManager.ExtendedHostOptions.isStorePlainTextPassphrases(java.lang.String realm,
SVNAuthentication auth) |
boolean |
ISVNConnectionOptions.isStorePlainTextPassphrases(java.lang.String realm,
SVNAuthentication auth) |
boolean |
ISVNHostOptions.isStorePlainTextPassphrases(java.lang.String realm,
SVNAuthentication auth) |
boolean |
DefaultSVNHostOptions.isStorePlainTextPassphrases(java.lang.String realm,
SVNAuthentication auth) |
boolean |
DefaultSVNConnectionOptions.isStorePlainTextPasswords(java.lang.String realm,
SVNAuthentication auth) |
boolean |
DefaultSVNAuthenticationManager.ExtendedHostOptions.isStorePlainTextPasswords(java.lang.String realm,
SVNAuthentication auth) |
boolean |
ISVNConnectionOptions.isStorePlainTextPasswords(java.lang.String realm,
SVNAuthentication auth) |
boolean |
ISVNHostOptions.isStorePlainTextPasswords(java.lang.String realm,
SVNAuthentication auth) |
boolean |
DefaultSVNHostOptions.isStorePlainTextPasswords(java.lang.String realm,
SVNAuthentication auth) |
SVNAuthentication |
DefaultSVNAuthenticationManager.DumbAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
SVNAuthentication |
DefaultSVNAuthenticationManager.CacheAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
SVNAuthentication |
DefaultSVNPersistentAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
void |
DefaultSVNAuthenticationManager.CacheAuthenticationProvider.saveAuthentication(SVNAuthentication auth,
java.lang.String realm) |
void |
DefaultSVNPersistentAuthenticationProvider.saveAuthentication(SVNAuthentication auth,
java.lang.String kind,
java.lang.String realm) |
void |
ISVNPersistentAuthenticationProvider.saveAuthentication(SVNAuthentication auth,
java.lang.String kind,
java.lang.String realm) |
boolean |
DefaultSVNPersistentAuthenticationProvider.IPasswordStorage.savePassphrase(java.lang.String realm,
char[] passphrase,
SVNAuthentication auth,
SVNProperties authParameters,
boolean force) |
boolean |
DefaultSVNPersistentAuthenticationProvider.SimplePasswordStorage.savePassphrase(java.lang.String realm,
char[] passphrase,
SVNAuthentication auth,
SVNProperties authParameters,
boolean force) |
boolean |
DefaultSVNPersistentAuthenticationProvider.WinCryptPasswordStorage.savePassphrase(java.lang.String realm,
char[] passphrase,
SVNAuthentication auth,
SVNProperties authParameters,
boolean force) |
boolean |
DefaultSVNPersistentAuthenticationProvider.MacOsKeychainPasswordStorage.savePassphrase(java.lang.String realm,
char[] passphrase,
SVNAuthentication auth,
SVNProperties authParameters,
boolean force) |
boolean |
DefaultSVNPersistentAuthenticationProvider.GnomeKeyringPasswordStorage.savePassphrase(java.lang.String realm,
char[] passphrase,
SVNAuthentication auth,
SVNProperties authParameters,
boolean force) |
boolean |
DefaultSVNPersistentAuthenticationProvider.IPasswordStorage.savePassword(java.lang.String realm,
char[] password,
SVNAuthentication auth,
SVNProperties authParameters) |
boolean |
DefaultSVNPersistentAuthenticationProvider.SimplePasswordStorage.savePassword(java.lang.String realm,
char[] password,
SVNAuthentication auth,
SVNProperties authParameters) |
boolean |
DefaultSVNPersistentAuthenticationProvider.WinCryptPasswordStorage.savePassword(java.lang.String realm,
char[] password,
SVNAuthentication auth,
SVNProperties authParameters) |
boolean |
DefaultSVNPersistentAuthenticationProvider.MacOsKeychainPasswordStorage.savePassword(java.lang.String realm,
char[] password,
SVNAuthentication auth,
SVNProperties authParameters) |
boolean |
DefaultSVNPersistentAuthenticationProvider.GnomeKeyringPasswordStorage.savePassword(java.lang.String realm,
char[] password,
SVNAuthentication auth,
SVNProperties authParameters) |
private void |
DefaultSVNPersistentAuthenticationProvider.savePasswordCredential(SVNProperties values,
SVNAuthentication auth,
java.lang.String realm) |
private void |
DefaultSVNPersistentAuthenticationProvider.saveSSHCredential(SVNProperties values,
SVNAuthentication auth,
java.lang.String realm) |
private boolean |
DefaultSVNPersistentAuthenticationProvider.saveSSLCredential(SVNProperties values,
SVNAuthentication auth,
java.lang.String realm) |
private void |
DefaultSVNPersistentAuthenticationProvider.saveUserNameCredential(SVNProperties values,
SVNAuthentication auth) |
Modifier and Type | Method and Description |
---|---|
private SVNAuthentication |
JavaHLAuthenticationProvider.getDefaultUserNameCredentials(java.lang.String userName) |
SVNAuthentication |
JavaHLAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
Modifier and Type | Method and Description |
---|---|
SVNAuthentication |
JavaHLAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
Modifier and Type | Method and Description |
---|---|
private SVNAuthentication |
JavaHLAuthenticationProvider.getDefaultUserNameCredentials(java.lang.String userName) |
SVNAuthentication |
JavaHLAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
Modifier and Type | Method and Description |
---|---|
SVNAuthentication |
JavaHLAuthenticationProvider.requestClientAuthentication(java.lang.String kind,
SVNURL url,
java.lang.String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |