All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.activemq.artemis.core.remoting.impl.ssl.DefaultSSLContextFactory Maven / Gradle / Ivy

There is a newer version: 2.33.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.core.remoting.impl.ssl;

import java.lang.invoke.MethodHandles;
import java.util.Map;
import javax.net.ssl.SSLContext;
import org.apache.activemq.artemis.core.remoting.impl.netty.TransportConstants;
import org.apache.activemq.artemis.spi.core.remoting.ssl.SSLContextConfig;
import org.apache.activemq.artemis.spi.core.remoting.ssl.SSLContextFactory;
import org.apache.activemq.artemis.utils.ConfigurationHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Simple SSLContextFactory for use in NettyConnector and NettyAcceptor.
 */
public class DefaultSSLContextFactory implements SSLContextFactory {

   private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());

   @Override
   public SSLContext getSSLContext(final SSLContextConfig config, final Map additionalOpts) throws Exception {
      final boolean useDefaultSslContext = ConfigurationHelper.getBooleanProperty(
         TransportConstants.USE_DEFAULT_SSL_CONTEXT_PROP_NAME,
         TransportConstants.DEFAULT_USE_DEFAULT_SSL_CONTEXT,
         additionalOpts
      );

      if (useDefaultSslContext) {
         logger.debug("Using the Default JDK SSLContext.");
         return SSLContext.getDefault();
      }

      logger.debug("Creating JDK SSLContext with {}", config);
      return new SSLSupport(config).createContext();
   }

   @Override
   public int getPriority() {
      return 5;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy