comparison app/src/main/java/ch/ethz/ssh2/AuthenticationResult.java @ 438:d29cce60f393

migrate from Eclipse to Android Studio
author Carl Byington <carl@five-ten-sg.com>
date Thu, 03 Dec 2015 11:23:55 -0800
parents src/ch/ethz/ssh2/AuthenticationResult.java@071eccdff8ea
children
comparison
equal deleted inserted replaced
437:208b31032318 438:d29cce60f393
1
2 package ch.ethz.ssh2;
3
4 public enum AuthenticationResult {
5
6 /**
7 *
8 */
9 SUCCESS,
10 /**
11 * The authentication request to which this is a response was successful, however, more
12 * authentication requests are needed (multi-method authentication sequence).
13 *
14 * @see ServerAuthenticationCallback#getRemainingAuthMethods(ServerConnection)
15 */
16 PARTIAL_SUCCESS,
17 /**
18 * The server rejected the authentication request.
19 */
20 FAILURE
21 }