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

jcifs.smb.SmbExtendedAuthenticator Maven / Gradle / Ivy

Go to download

JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java

There is a newer version: 1.3.18.1
Show newest version
// >>SmbAuthenticator
package jcifs.smb;

/**
 * This interface is used to support kinds of Extended Security Authentication. 
 */
public interface SmbExtendedAuthenticator {
    /**
     * Setup a session.
     * 
     * @param session 
     * @param andx 
     * @param andxResponse 
     * @throws SmbException 
     */
    public void sessionSetup(
            SmbSession session,
            ServerMessageBlock andx,
            ServerMessageBlock andxResponse     
    )throws SmbException;
    
    public String getDomain();
}
// SmbAuthenticator<<




© 2015 - 2024 Weber Informatics LLC | Privacy Policy