154 lines
4.4 KiB
Java
154 lines
4.4 KiB
Java
package com.nis.domain.configuration;
|
|
|
|
import com.nis.util.excel.ExcelField;
|
|
|
|
public class PxyInterceptCfg extends CfgIndexInfo {
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private static final long serialVersionUID = 994229066993318362L;
|
|
@ExcelField(title="pxy_intercept_monit_keyring",sort=8)
|
|
private String keyring;
|
|
@ExcelField(title="exclusions_ev_cert",dictType="SYS_YES_NO",sort=9)
|
|
private String evCert;
|
|
@ExcelField(title="exclusions_cert_transparency",dictType="SYS_YES_NO",sort=10)
|
|
private String certTransparency;
|
|
@ExcelField(title="exclusions_client_cert_req",dictType="SYS_YES_NO",sort=11)
|
|
private String clientCertReq;
|
|
@ExcelField(title="exclusions_pinning",dictType="SYS_YES_NO",sort=12)
|
|
private String pinning;
|
|
@ExcelField(title="exclusions_protocol_errors",dictType="SYS_YES_NO",sort=13)
|
|
private String protocolErrors;
|
|
@ExcelField(title="cert_verify_approach_cn",dictType="SYS_YES_NO",sort=14)
|
|
private String cn;
|
|
@ExcelField(title="cert_verify_approach_issuer",dictType="SYS_YES_NO",sort=15)
|
|
private String issuer;
|
|
@ExcelField(title="cert_verify_approach_self_signed",dictType="SYS_YES_NO",sort=16)
|
|
private String selfSigned;
|
|
@ExcelField(title="cert_verify_approach_expiration",dictType="SYS_YES_NO",sort=17)
|
|
private String expiration;
|
|
@ExcelField(title="cert_verify_fail_method",dictType="FAIL_METHOD",sort=18)
|
|
private String failMethod;
|
|
@ExcelField(title="ssl_ver_min",dictType="SSL_VERSION",sort=19)
|
|
private String min;
|
|
@ExcelField(title="ssl_ver_max",dictType="SSL_VERSION",sort=20)
|
|
private String max;
|
|
@ExcelField(title="ssl_ver_mirror_client",dictType="SYS_YES_NO",sort=21)
|
|
private String mirrorClient;
|
|
@ExcelField(title="ssl_ver_allow_http2",dictType="SYS_YES_NO",sort=22)
|
|
private String allowHttp2;
|
|
@ExcelField(title="decrypt_mirror_enable",dictType="SYS_YES_NO",sort=23)
|
|
private String enable;
|
|
@ExcelField(title="decrypt_mirror_mirror_profile",sort=24)
|
|
private String mirrorProfile;
|
|
private String userRegion1;
|
|
private String userRegion2;
|
|
private String userRegion3;
|
|
private String userRegion4;
|
|
// private String userRegion5;
|
|
public String getKeyring() {
|
|
return keyring;
|
|
}
|
|
public void setKeyring(String keyring) {
|
|
this.keyring = keyring;
|
|
}
|
|
public String getEvCert() {
|
|
return evCert;
|
|
}
|
|
public void setEvCert(String evCert) {
|
|
this.evCert = evCert;
|
|
}
|
|
public String getCertTransparency() {
|
|
return certTransparency;
|
|
}
|
|
public void setCertTransparency(String certTransparency) {
|
|
this.certTransparency = certTransparency;
|
|
}
|
|
public String getClientCertReq() {
|
|
return clientCertReq;
|
|
}
|
|
public void setClientCertReq(String clientCertReq) {
|
|
this.clientCertReq = clientCertReq;
|
|
}
|
|
public String getPinning() {
|
|
return pinning;
|
|
}
|
|
public void setPinning(String pinning) {
|
|
this.pinning = pinning;
|
|
}
|
|
public String getProtocolErrors() {
|
|
return protocolErrors;
|
|
}
|
|
public void setProtocolErrors(String protocolErrors) {
|
|
this.protocolErrors = protocolErrors;
|
|
}
|
|
public String getCn() {
|
|
return cn;
|
|
}
|
|
public void setCn(String cn) {
|
|
this.cn = cn;
|
|
}
|
|
public String getIssuer() {
|
|
return issuer;
|
|
}
|
|
public void setIssuer(String issuer) {
|
|
this.issuer = issuer;
|
|
}
|
|
public String getSelfSigned() {
|
|
return selfSigned;
|
|
}
|
|
public void setSelfSigned(String selfSigned) {
|
|
this.selfSigned = selfSigned;
|
|
}
|
|
public String getExpiration() {
|
|
return expiration;
|
|
}
|
|
public void setExpiration(String expiration) {
|
|
this.expiration = expiration;
|
|
}
|
|
public String getFailMethod() {
|
|
return failMethod;
|
|
}
|
|
public void setFailMethod(String failMethod) {
|
|
this.failMethod = failMethod;
|
|
}
|
|
public String getMin() {
|
|
return min;
|
|
}
|
|
public void setMin(String min) {
|
|
this.min = min;
|
|
}
|
|
public String getMax() {
|
|
return max;
|
|
}
|
|
public void setMax(String max) {
|
|
this.max = max;
|
|
}
|
|
public String getMirrorClient() {
|
|
return mirrorClient;
|
|
}
|
|
public void setMirrorClient(String mirrorClient) {
|
|
this.mirrorClient = mirrorClient;
|
|
}
|
|
public String getAllowHttp2() {
|
|
return allowHttp2;
|
|
}
|
|
public void setAllowHttp2(String allowHttp2) {
|
|
this.allowHttp2 = allowHttp2;
|
|
}
|
|
public String getEnable() {
|
|
return enable;
|
|
}
|
|
public void setEnable(String enable) {
|
|
this.enable = enable;
|
|
}
|
|
public String getMirrorProfile() {
|
|
return mirrorProfile;
|
|
}
|
|
public void setMirrorProfile(String mirrorProfile) {
|
|
this.mirrorProfile = mirrorProfile;
|
|
}
|
|
|
|
}
|