Interface OpenSSLContextFactory
-
- All Superinterfaces:
Comparable<OpenSSLContextFactory>
public interface OpenSSLContextFactory extends Comparable<OpenSSLContextFactory>
Service interface to create anSslContext
for a configuration. This is ONLY used with OpenSSL. To create and use your own implementation you need to create a fileMETA-INF/services/org.apache.activemq.artemis.spi.core.remoting.ssl.OpenSSLContextFactory
in your jar and fill it with the full qualified name of your implementation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
clearSslContexts()
Release any cachedSslContext
instances.default int
compareTo(OpenSSLContextFactory other)
io.netty.handler.ssl.SslContext
getClientSslContext(SSLContextConfig config, Map<String,Object> additionalOpts)
int
getPriority()
The priority for theOpenSSLContextFactory
when resolving the service to get the implementation.io.netty.handler.ssl.SslContext
getServerSslContext(SSLContextConfig config, Map<String,Object> additionalOpts)
-
-
-
Method Detail
-
clearSslContexts
default void clearSslContexts()
Release any cachedSslContext
instances.
-
compareTo
default int compareTo(OpenSSLContextFactory other)
- Specified by:
compareTo
in interfaceComparable<OpenSSLContextFactory>
-
getClientSslContext
io.netty.handler.ssl.SslContext getClientSslContext(SSLContextConfig config, Map<String,Object> additionalOpts) throws Exception
- Parameters:
additionalOpts
- implementation specific additional options.- Returns:
- an
SslContext
instance for the given configuration. - Throws:
Exception
-
getServerSslContext
io.netty.handler.ssl.SslContext getServerSslContext(SSLContextConfig config, Map<String,Object> additionalOpts) throws Exception
- Parameters:
additionalOpts
- implementation specific additional options.- Returns:
- an
SslContext
instance for the given configuration. - Throws:
Exception
-
getPriority
int getPriority()
The priority for theOpenSSLContextFactory
when resolving the service to get the implementation. This is used when selecting the implementation when several implementations are loaded. The highest priority implementation will be used.
-
-