From 4ab904f8d4f7f3aed48350343292f818e2fa00c9 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Tue, 18 Oct 2022 11:09:09 +0200 Subject: [PATCH] Polishing. Remove outdated Javadoc links. See gh-731. --- .../springframework/vault/support/SslConfiguration.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/spring-vault-core/src/main/java/org/springframework/vault/support/SslConfiguration.java b/spring-vault-core/src/main/java/org/springframework/vault/support/SslConfiguration.java index be68025b..91ecf3ef 100644 --- a/spring-vault-core/src/main/java/org/springframework/vault/support/SslConfiguration.java +++ b/spring-vault-core/src/main/java/org/springframework/vault/support/SslConfiguration.java @@ -96,8 +96,6 @@ public class SslConfiguration { * to indicate the SSL socket factory should use a default list of enabled cipher * suites. * @since 2.3.2 - * @see sun.security.ssl.ProtocolVersion - * @see sun.security.ssl.CipherSuite */ public SslConfiguration(KeyStoreConfiguration keyStoreConfiguration, KeyConfiguration keyConfiguration, KeyStoreConfiguration trustStoreConfiguration, List enabledProtocols, @@ -145,8 +143,6 @@ public class SslConfiguration { * to indicate the SSL socket factory should use a default list of enabled cipher * suites. * @since 2.3.2 - * @see sun.security.ssl.ProtocolVersion - * @see sun.security.ssl.CipherSuite */ public SslConfiguration(KeyStoreConfiguration keyStoreConfiguration, KeyStoreConfiguration trustStoreConfiguration, List enabledProtocols, List enabledCipherSuites) { @@ -302,7 +298,6 @@ public class SslConfiguration { * @param enabledProtocols must not be {@literal null}. * @return a new {@link SslConfiguration} with the enabled protocol versions applied. * @since 2.3.2 - * @see sun.security.ssl.ProtocolVersion */ public SslConfiguration withEnabledProtocols(String... enabledProtocols) { @@ -317,7 +312,6 @@ public class SslConfiguration { * @param enabledProtocols must not be {@literal null}. * @return a new {@link SslConfiguration} with the enabled protocol versions applied. * @since 2.3.2 - * @see sun.security.ssl.ProtocolVersion */ public SslConfiguration withEnabledProtocols(List enabledProtocols) { @@ -343,7 +337,6 @@ public class SslConfiguration { * @param enabledCipherSuites must not be {@literal null}. * @return a new {@link SslConfiguration} with the enabled cipher suites applied. * @since 2.3.2 - * @see sun.security.ssl.CipherSuite */ public SslConfiguration withEnabledCipherSuites(String... enabledCipherSuites) { @@ -358,7 +351,6 @@ public class SslConfiguration { * @param enabledCipherSuites must not be {@literal null}. * @return a new {@link SslConfiguration} with the enabled cipher suites applied. * @since 2.3.2 - * @see sun.security.ssl.CipherSuite */ public SslConfiguration withEnabledCipherSuites(List enabledCipherSuites) {