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) {