
com.hecloud.runtime.common.enums.Protocol Maven / Gradle / Ivy
package com.hecloud.runtime.common.enums;
/**
* SSL协议
*
* @author LoveinBJ
*/
public enum Protocol {
/**
*
*/
TLS_V1("TLSv1"),
/**
*
*/
TLS_V1_2("TLSv1.2"),
/**
*
*/
TLS_V1_1("TLSv1.1"),
/**
*
*/
SSL_V3("SSLv3"),
/**
*
*/
SSL_V2_HELLO("SSLv2Hello");
private String content;
Protocol(String content) {
this.content = content;
}
public String getContent() {
return content;
}
void setContent(String content) {
this.content = content;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy