[
https://issues.apache.org/jira/browse/ARTEMIS-2704?focusedWorklogId=429216&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-429216
]
ASF GitHub Bot logged work on ARTEMIS-2704:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 30/Apr/20 19:32
Start Date: 30/Apr/20 19:32
Worklog Time Spent: 10m
Work Description: jbertram commented on a change in pull request #3073:
URL: https://github.com/apache/activemq-artemis/pull/3073#discussion_r418241190
##########
File path:
artemis-core-client/src/main/java/org/apache/activemq/artemis/spi/core/remoting/ssl/SSLContextFactory.java
##########
@@ -0,0 +1,57 @@
+/*
+ * Copyright 2020 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.activemq.artemis.spi.core.remoting.ssl;
+
+import java.util.Map;
+import javax.net.ssl.SSLContext;
+import org.jboss.logging.Logger;
+
+/**
+ * Service interface to create a SSLContext for a configuration.
+ */
+public interface SSLContextFactory extends Comparable<SSLContextFactory> {
+ Logger log = Logger.getLogger(SSLContextFactory.class);
+
+ /**
+ * Obtain a SSLContext from the configuration.
+ * @param configuration
+ * @param keystoreProvider
+ * @param keystorePath
+ * @param keystorePassword
+ * @param truststoreProvider
+ * @param truststorePath
+ * @param truststorePassword
+ * @param crlPath
+ * @param trustManagerFactoryPlugin
+ * @param trustAll
+ * @return a SSLContext instance.
+ * @throws Exception
+ */
+ SSLContext getSSLContext(Map<String, Object> configuration,
+ String keystoreProvider, String keystorePath, String
keystorePassword,
+ String truststoreProvider, String truststorePath, String
truststorePassword,
+ String crlPath, String trustManagerFactoryPlugin, boolean trustAll)
throws Exception;
+
+ default void clearSSLContexts() {
+ }
+
+ int getPriority();
Review comment:
What is priority used for? Some JavaDocs might help clarify this.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 429216)
Time Spent: 1h 40m (was: 1.5h)
> Provide a SPI to manage and cache SSLContext
> ---------------------------------------------
>
> Key: ARTEMIS-2704
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2704
> Project: ActiveMQ Artemis
> Issue Type: Improvement
> Components: Broker
> Affects Versions: 2.11.0
> Reporter: Emmanuel Hugonnet
> Priority: Major
> Time Spent: 1h 40m
> Remaining Estimate: 0h
>
> Currently we recreate SSLContext for each connector / acceptor and we don't
> provide a way for an integrator to reuse its own SSLContext which leads to
> some duplication. This small enhancement provides a way to simplify this via
> the use of a SPI.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)