jcifs.smb.SmbExtendedAuthenticator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcifs-krb5-jdk7 Show documentation
Show all versions of jcifs-krb5-jdk7 Show documentation
JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java
// >>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<<