io.codemodder.codemods.SSLProtocols Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-codemods Show documentation
Show all versions of core-codemods Show documentation
Codemods for fixing common errors across many Java projects
package io.codemodder.codemods;
/** Hold any common info for the codemods related to TLS protocols. */
final class SSLProtocols {
private SSLProtocols() {}
static final String safeTlsVersion = "TLSv1.2";
}