Mercurial > 510Connectbot
annotate src/ch/ethz/ssh2/AuthenticationResult.java @ 380:162c001c8142
fix url link in help file
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 04 Aug 2014 15:25:34 -0700 |
parents | 071eccdff8ea |
children |
rev | line source |
---|---|
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
1 |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
2 package ch.ethz.ssh2; |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
3 |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
4 public enum AuthenticationResult { |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
5 |
307 | 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 | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
21 } |