Class DefaultSVNPersistentAuthenticationProvider.SimplePasswordStorage
- java.lang.Object
-
- org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider.SimplePasswordStorage
-
- All Implemented Interfaces:
DefaultSVNPersistentAuthenticationProvider.IPasswordStorage
- Enclosing class:
- DefaultSVNPersistentAuthenticationProvider
protected class DefaultSVNPersistentAuthenticationProvider.SimplePasswordStorage extends java.lang.Object implements DefaultSVNPersistentAuthenticationProvider.IPasswordStorage
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SimplePasswordStorage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getPassType()
char[]
readPassphrase(java.lang.String realm, SVNProperties authParameters)
char[]
readPassword(java.lang.String realm, java.lang.String userName, SVNProperties authParameters)
boolean
savePassphrase(java.lang.String realm, char[] passphrase, SVNAuthentication auth, SVNProperties authParameters, boolean force)
boolean
savePassword(java.lang.String realm, char[] password, SVNAuthentication auth, SVNProperties authParameters)
-
-
-
Method Detail
-
getPassType
public java.lang.String getPassType()
- Specified by:
getPassType
in interfaceDefaultSVNPersistentAuthenticationProvider.IPasswordStorage
-
savePassword
public boolean savePassword(java.lang.String realm, char[] password, SVNAuthentication auth, SVNProperties authParameters) throws SVNException
- Specified by:
savePassword
in interfaceDefaultSVNPersistentAuthenticationProvider.IPasswordStorage
- Throws:
SVNException
-
readPassword
public char[] readPassword(java.lang.String realm, java.lang.String userName, SVNProperties authParameters)
- Specified by:
readPassword
in interfaceDefaultSVNPersistentAuthenticationProvider.IPasswordStorage
-
savePassphrase
public boolean savePassphrase(java.lang.String realm, char[] passphrase, SVNAuthentication auth, SVNProperties authParameters, boolean force) throws SVNException
- Specified by:
savePassphrase
in interfaceDefaultSVNPersistentAuthenticationProvider.IPasswordStorage
- Throws:
SVNException
-
readPassphrase
public char[] readPassphrase(java.lang.String realm, SVNProperties authParameters)
- Specified by:
readPassphrase
in interfaceDefaultSVNPersistentAuthenticationProvider.IPasswordStorage
-
-