You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2017/05/11 18:17:47 UTC

[12/42] httpcomponents-core git commit: Fix parmeter names.

Fix parmeter names.

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpcore/branches/4.4.x@1793755 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/commit/e714c7b1
Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/tree/e714c7b1
Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/diff/e714c7b1

Branch: refs/heads/4.4.x
Commit: e714c7b1ced80850fc8d669a2295fd5b6d8f3321
Parents: 50e8ff3
Author: Gary D. Gregory <gg...@apache.org>
Authored: Thu May 4 08:54:07 2017 +0000
Committer: Oleg Kalnichevski <ol...@apache.org>
Committed: Thu May 11 20:16:43 2017 +0200

----------------------------------------------------------------------
 .../org/apache/http/nio/reactor/ssl/SSLSetupHandler.java  | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/e714c7b1/httpcore-nio/src/main/java/org/apache/http/nio/reactor/ssl/SSLSetupHandler.java
----------------------------------------------------------------------
diff --git a/httpcore-nio/src/main/java/org/apache/http/nio/reactor/ssl/SSLSetupHandler.java b/httpcore-nio/src/main/java/org/apache/http/nio/reactor/ssl/SSLSetupHandler.java
index e2afbd8..4724fc4 100644
--- a/httpcore-nio/src/main/java/org/apache/http/nio/reactor/ssl/SSLSetupHandler.java
+++ b/httpcore-nio/src/main/java/org/apache/http/nio/reactor/ssl/SSLSetupHandler.java
@@ -46,11 +46,11 @@ public interface SSLSetupHandler {
      * can use this callback to customize properties of the {@link SSLEngine}
      * used to establish the SSL session.
      *
-     * @param sslengine the SSL engine.
+     * @param sslEngine the SSL engine.
      * @throws SSLException if case of SSL protocol error.
      */
     //FIXME: fix type
-    void initalize(SSLEngine sslengine) throws SSLException;
+    void initalize(SSLEngine sslEngine) throws SSLException;
 
     /**
      * Triggered when the SSL connection has been established and initial SSL
@@ -59,10 +59,10 @@ public interface SSLSetupHandler {
      * For instance this would be the right place to enforce SSL cipher
      * strength, validate certificate chain and do hostname checks.
      *
-     * @param iosession the underlying IOSession for the SSL connection.
-     * @param sslsession newly created SSL session.
+     * @param ioSession the underlying IOSession for the SSL connection.
+     * @param sslSession newly created SSL session.
      * @throws SSLException if case of SSL protocol error.
      */
-    void verify(IOSession iosession, SSLSession sslsession) throws SSLException;
+    void verify(IOSession ioSession, SSLSession sslSession) throws SSLException;
 
 }