diff src/org/tn5250j/framework/transport/SSLInterface.java @ 112:77ac18bc1b2f

cleanup java formatting
author Carl Byington <carl@five-ten-sg.com>
date Wed, 18 Jun 2014 13:03:01 -0700
parents e5259eab903e
children
line wrap: on
line diff
--- a/src/org/tn5250j/framework/transport/SSLInterface.java	Wed Jun 18 13:00:19 2014 -0700
+++ b/src/org/tn5250j/framework/transport/SSLInterface.java	Wed Jun 18 13:03:01 2014 -0700
@@ -25,22 +25,22 @@
 
 public interface SSLInterface {
 
-	/**
-	 * Initialize the components required to create a new client socket
-	 * when createSSLSocket is called.
-	 * @param sslType  The ssl socket type (NONE, SSLv2, SSLv3, TLS)
+    /**
+     * Initialize the components required to create a new client socket
+     * when createSSLSocket is called.
+     * @param sslType  The ssl socket type (NONE, SSLv2, SSLv3, TLS)
      * @param homeDirectory  location of the .tn5250j subdirectory containing
      *                       the keystore
-	 * @see org.tn5250j.framework.transport.SSLConstants
-	 */
-   public abstract void init(String sslType, String homeDirectory);
+     * @see org.tn5250j.framework.transport.SSLConstants
+     */
+    public abstract void init(String sslType, String homeDirectory);
 
-   /**
-    * Create a new socket
-    * @param destination
-    * @param port
-    * @return new socket, or null if none could be created.
-    */
-   public abstract Socket createSSLSocket(String destination, int port);
+    /**
+     * Create a new socket
+     * @param destination
+     * @param port
+     * @return new socket, or null if none could be created.
+     */
+    public abstract Socket createSSLSocket(String destination, int port);
 
 }
\ No newline at end of file