Rework SslHandlerFactory
[netconf.git] / plugins / netconf-client-mdsal / src / main / java / org / opendaylight / netconf / client / mdsal / impl / FilteredSslContextFactory.java
diff --git a/plugins/netconf-client-mdsal/src/main/java/org/opendaylight/netconf/client/mdsal/impl/FilteredSslContextFactory.java b/plugins/netconf-client-mdsal/src/main/java/org/opendaylight/netconf/client/mdsal/impl/FilteredSslContextFactory.java
new file mode 100644 (file)
index 0000000..481e753
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ * Copyright (c) 2024 PANTHEON.tech, s.r.o. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.netconf.client.mdsal.impl;
+
+import static java.util.Objects.requireNonNull;
+
+import io.netty.handler.ssl.SslContext;
+import java.util.Set;
+
+final class FilteredSslContextFactory extends DefaultSslContextFactory {
+    private final Set<String> excludedVersions;
+
+    FilteredSslContextFactory(final DefaultSslContextFactoryProvider keyStoreProvider,
+            final Set<String> excludedVersions) {
+        super(keyStoreProvider);
+        this.excludedVersions = requireNonNull(excludedVersions);
+    }
+
+    @Override
+    SslContext wrapSslContext(final SslContext sslContext) {
+        return new FilteredSslContext(sslContext, excludedVersions);
+    }
+}