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

ch.ethz.ssh2.AuthenticationResult Maven / Gradle / Ivy

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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy