You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2017/05/04 17:26:23 UTC

logging-log4j2 git commit: Add missing accessors.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 9ce722cdf -> 34ea230f2


Add missing accessors.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/34ea230f
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/34ea230f
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/34ea230f

Branch: refs/heads/master
Commit: 34ea230f2d2d7118f1b56cb81a8ea5317efb0992
Parents: 9ce722c
Author: Gary Gregory <gg...@apache.org>
Authored: Thu May 4 10:26:21 2017 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Thu May 4 10:26:21 2017 -0700

----------------------------------------------------------------------
 .../log4j/core/net/ssl/SslConfiguration.java        | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/34ea230f/log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/SslConfiguration.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/SslConfiguration.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/SslConfiguration.java
index c3f1b49..857aa5b 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/SslConfiguration.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/SslConfiguration.java
@@ -275,4 +275,20 @@ public class SslConfiguration {
         }
         return true;
     }
+
+    public KeyStoreConfiguration getKeyStoreConfig() {
+        return keyStoreConfig;
+    }
+
+    public TrustStoreConfiguration getTrustStoreConfig() {
+        return trustStoreConfig;
+    }
+
+    public SSLContext getSslContext() {
+        return sslContext;
+    }
+
+    public String getProtocol() {
+        return protocol;
+    }
 }