Uses of Class
com.hierynomus.smbj.auth.AuthenticationContext
-
Packages that use AuthenticationContext Package Description com.hierynomus.smbj.auth com.hierynomus.smbj.connection com.hierynomus.smbj.session -
-
Uses of AuthenticationContext in com.hierynomus.smbj.auth
Subclasses of AuthenticationContext in com.hierynomus.smbj.auth Modifier and Type Class Description class
GSSAuthenticationContext
Methods in com.hierynomus.smbj.auth that return AuthenticationContext Modifier and Type Method Description static AuthenticationContext
AuthenticationContext. anonymous()
static AuthenticationContext
AuthenticationContext. guest()
Methods in com.hierynomus.smbj.auth with parameters of type AuthenticationContext Modifier and Type Method Description AuthenticateResponse
Authenticator. authenticate(AuthenticationContext context, byte[] gssToken, ConnectionContext connectionContext)
AuthenticateResponse
NtlmAuthenticator. authenticate(AuthenticationContext context, byte[] gssToken, ConnectionContext connectionContext)
AuthenticateResponse
NtlmSealer. authenticate(AuthenticationContext context, byte[] gssToken, ConnectionContext connectionContext)
AuthenticateResponse
SpnegoAuthenticator. authenticate(AuthenticationContext context, byte[] gssToken, ConnectionContext connectionContext)
private AuthenticateResponse
NtlmAuthenticator. doAuthenticate(AuthenticationContext context, NtlmChallenge serverNtlmChallenge, byte[] ntlmChallengeBytes)
private AuthenticateResponse
NtlmAuthenticator. doNegotiate(AuthenticationContext context, byte[] gssToken)
boolean
Authenticator. supports(AuthenticationContext context)
boolean
NtlmAuthenticator. supports(AuthenticationContext context)
boolean
NtlmSealer. supports(AuthenticationContext context)
boolean
SpnegoAuthenticator. supports(AuthenticationContext context)
-
Uses of AuthenticationContext in com.hierynomus.smbj.connection
Fields in com.hierynomus.smbj.connection declared as AuthenticationContext Modifier and Type Field Description private AuthenticationContext
SMBSessionBuilder.BuilderContext. authContext
Methods in com.hierynomus.smbj.connection with parameters of type AuthenticationContext Modifier and Type Method Description Session
Connection. authenticate(AuthenticationContext authContext)
Authenticate the user on this connection in order to start a (new) session.Session
SMBSessionBuilder.SessionFactory. createSession(AuthenticationContext context)
Session
SMBSessionBuilder. establish(AuthenticationContext authContext)
Establish a new session on the connection using the passed credentials.private Authenticator
SMBSessionBuilder. getAuthenticator(AuthenticationContext context)
private SMBSessionBuilder.BuilderContext
SMBSessionBuilder. newContext(AuthenticationContext authContext, Authenticator authenticator)
-
Uses of AuthenticationContext in com.hierynomus.smbj.session
Fields in com.hierynomus.smbj.session declared as AuthenticationContext Modifier and Type Field Description private AuthenticationContext
Session. userCredentials
Methods in com.hierynomus.smbj.session that return AuthenticationContext Modifier and Type Method Description AuthenticationContext
Session. getAuthenticationContext()
Constructors in com.hierynomus.smbj.session with parameters of type AuthenticationContext Constructor Description Session(Connection connection, SmbConfig config, AuthenticationContext userCredentials, SMBEventBus bus, PathResolver pathResolver, Signatory signatory, PacketEncryptor encryptor)
-