org.tmatesoft.svn.core.auth
Class SVNPasswordAuthentication
java.lang.Object
org.tmatesoft.svn.core.auth.SVNAuthentication
org.tmatesoft.svn.core.auth.SVNPasswordAuthentication
- public class SVNPasswordAuthentication
- extends SVNAuthentication
The SVNPasswordAuthentication class represents a simple
user credential pair - a username and password.
To obtain a password credential, specify the PASSWORD
kind to credentials getter method of ISVNAuthenticationManager:
getFirstAuthentication()
,
getNextAuthentication()
.
- Version:
- 1.1.1
- Author:
- TMate Software Ltd.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SVNPasswordAuthentication
public SVNPasswordAuthentication(String userName,
String password,
boolean storageAllowed)
- Creates a password user credential object given a username and password.
- Parameters:
userName
- the name of a user to authenticatepassword
- the user's passwordstorageAllowed
- if true then
this credential is allowed to be stored in the
global auth cache, otherwise not
getPassword
public String getPassword()
- Returns this user credential's password.
- Returns:
- the user's password
Copyright © 2004-2007 TMate Software Ltd. All Rights Reserved.