hudson.scm.auth.ISVNAuthenticationManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subversion Show documentation
Show all versions of subversion Show documentation
Integrates Hudson with Subversion SCM
package hudson.scm.auth;
/**
* @see org.tmatesoft.svn.core.auth.ISVNAuthenticationManager
*
* @author Steven Christou
*
*/
public interface ISVNAuthenticationManager extends org.tmatesoft.svn.core.auth.ISVNAuthenticationManager {
/**
* Set an outcome listener for the authentication manager.
* @param listener
*/
public void setAuthenticationOutcomeListener(ISVNAuthenticationOutcomeListener listener);
/**
* Retrieve the authentication manager.
*
* @return ISVNAuthenticationManager
*/
public org.tmatesoft.svn.core.auth.ISVNAuthenticationManager getAuthenticationManager();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy