Mercurial > 510Connectbot
comparison src/org/tn5250j/framework/transport/SSLInterface.java @ 92:e5259eab903e
remove 5250 configuration
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 16 Jun 2014 16:22:34 -0700 |
parents | e8d2a24e85c6 |
children | 77ac18bc1b2f |
comparison
equal
deleted
inserted
replaced
91:33eb63352be5 | 92:e5259eab903e |
---|---|
26 public interface SSLInterface { | 26 public interface SSLInterface { |
27 | 27 |
28 /** | 28 /** |
29 * Initialize the components required to create a new client socket | 29 * Initialize the components required to create a new client socket |
30 * when createSSLSocket is called. | 30 * when createSSLSocket is called. |
31 * @param type The ssl socket type (SSLv2, SSLv3, TLS) | 31 * @param sslType The ssl socket type (NONE, SSLv2, SSLv3, TLS) |
32 * @param homeDirectory location of the .tn5250j subdirectory containing | |
33 * the keystore | |
32 * @see org.tn5250j.framework.transport.SSLConstants | 34 * @see org.tn5250j.framework.transport.SSLConstants |
33 */ | 35 */ |
34 public abstract void init(String sslType); | 36 public abstract void init(String sslType, String homeDirectory); |
35 | 37 |
36 /** | 38 /** |
37 * Create a new socket | 39 * Create a new socket |
38 * @param destination | 40 * @param destination |
39 * @param port | 41 * @param port |