Mercurial > 510Connectbot
comparison src/ch/ethz/ssh2/AuthenticationResult.java @ 308:42b15aaa7ac7 ganymed
merge
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 30 Jul 2014 14:21:50 -0700 |
parents | 071eccdff8ea |
children |
comparison
equal
deleted
inserted
replaced
306:90e47d99ea54 | 308:42b15aaa7ac7 |
---|---|
1 | 1 |
2 package ch.ethz.ssh2; | 2 package ch.ethz.ssh2; |
3 | 3 |
4 public enum AuthenticationResult { | 4 public enum AuthenticationResult { |
5 | 5 |
6 /** | 6 /** |
7 * | 7 * |
8 */ | 8 */ |
9 SUCCESS, | 9 SUCCESS, |
10 /** | 10 /** |
11 * The authentication request to which this is a response was successful, however, more | 11 * The authentication request to which this is a response was successful, however, more |
12 * authentication requests are needed (multi-method authentication sequence). | 12 * authentication requests are needed (multi-method authentication sequence). |
13 * | 13 * |
14 * @see ServerAuthenticationCallback#getRemainingAuthMethods(ServerConnection) | 14 * @see ServerAuthenticationCallback#getRemainingAuthMethods(ServerConnection) |
15 */ | 15 */ |
16 PARTIAL_SUCCESS, | 16 PARTIAL_SUCCESS, |
17 /** | 17 /** |
18 * The server rejected the authentication request. | 18 * The server rejected the authentication request. |
19 */ | 19 */ |
20 FAILURE | 20 FAILURE |
21 } | 21 } |