ch.ethz.ssh2.AuthenticationResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ganymed-ssh2 Show documentation
Show all versions of ganymed-ssh2 Show documentation
Ganymed SSH-2: Java based SSH-2 Protocol Implementation
The newest version!
package ch.ethz.ssh2;
public enum AuthenticationResult {
/**
*
*/
SUCCESS,
/**
* The authentication request to which this is a response was successful, however, more
* authentication requests are needed (multi-method authentication sequence).
*
* @see ServerAuthenticationCallback#getRemainingAuthMethods(ServerConnection)
*/
PARTIAL_SUCCESS,
/**
* The server rejected the authentication request.
*/
FAILURE
}