Uses of Interface
org.apache.sshd.client.future.AuthFuture
-
Packages that use AuthFuture Package Description org.apache.sshd.client.future org.apache.sshd.client.session -
-
Uses of AuthFuture in org.apache.sshd.client.future
Classes in org.apache.sshd.client.future that implement AuthFuture Modifier and Type Class Description class
DefaultAuthFuture
A default implementation ofAuthFuture
.Methods in org.apache.sshd.client.future that return AuthFuture Modifier and Type Method Description AuthFuture
DefaultAuthFuture. verify(long timeoutMillis)
-
Uses of AuthFuture in org.apache.sshd.client.session
Fields in org.apache.sshd.client.session declared as AuthFuture Modifier and Type Field Description private AuthFuture
ClientSessionImpl. authFuture
The authentication future created by the last call toClientSessionImpl.auth()
;null
before the first call toClientSessionImpl.auth()
.Fields in org.apache.sshd.client.session with type parameters of type AuthFuture Modifier and Type Field Description protected java.util.concurrent.atomic.AtomicReference<AuthFuture>
ClientUserAuthService. authFutureHolder
The AuthFuture that is being used by the current auth request.Methods in org.apache.sshd.client.session that return AuthFuture Modifier and Type Method Description AuthFuture
ClientSession. auth()
Starts the authentication process.AuthFuture
ClientSessionImpl. auth()
AuthFuture
ClientUserAuthService. auth(java.lang.String service)
protected AuthFuture
ClientUserAuthService. createAuthFuture(ClientSession session, java.lang.String service)
protected AuthFuture
ClientUserAuthService. updateCurrentAuthFuture(ClientSession session, java.lang.String service)
-