All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hudson.scm.auth.ISVNAuthenticationManager Maven / Gradle / Ivy

There is a newer version: 2.3.11
Show newest version

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