增加ssl配置功能

This commit is contained in:
zhangwei
2018-05-31 17:07:26 +08:00
parent 6eafbf6f59
commit df4f6e68ae
16 changed files with 545 additions and 114 deletions

View File

@@ -15,8 +15,8 @@ package com.nis.domain.configuration;
* @date 2018年2月6日 上午8:59:51
* @version V1.0
*/
public class SslKeywordCfg extends ComplexkeywordCfg{
public static final String tableName="ssl_cert_cfg";
public class SslKeywordCfg extends BaseStringCfg{
public static final String tableName="ssl_keyword_cfg";
/**
* @Fields serialVersionUID:TODO用一句话描述这个变量表示什么
*
@@ -36,5 +36,9 @@ public class SslKeywordCfg extends ComplexkeywordCfg{
this.matchMethod=3;
this.isHexbin=0;
}
public static String getTablename() {
return tableName;
}
}