Merge branch 'develop' of http://192.168.10.125/k18_web/NFS.git into
develop Conflicts: src/main/java/com/nis/web/controller/configuration/proxy/PxyObjKeyringController.java 证书增加CN和SAN列,修改时间类型 common.js去掉无用字符 国际化增加cert_not_match_domain
This commit is contained in:
@@ -43,7 +43,14 @@ public class BaseStringCfg<T> extends BaseCfg<T> {
|
||||
protected Integer appCode;//仅用于copy属性使用
|
||||
protected Integer behavCode;//仅用于copy属性使用
|
||||
protected Integer specServiceId;//仅用于copy属性使用
|
||||
protected String domain;//仅用于copy属性使用
|
||||
|
||||
public String getDomain() {
|
||||
return domain;
|
||||
}
|
||||
public void setDomain(String domain) {
|
||||
this.domain = domain;
|
||||
}
|
||||
public Integer getAppCode() {
|
||||
return appCode;
|
||||
}
|
||||
|
||||
@@ -29,13 +29,28 @@ public class PxyObjKeyring extends BaseCfg<PxyObjKeyring> {
|
||||
@ExcelField(title="issuer",sort=6)
|
||||
private String issuer;
|
||||
@ExcelField(title="not_before_time",sort=8)
|
||||
private Date notBeforeTime;
|
||||
private String notBeforeTime;
|
||||
@ExcelField(title="not_after_time",sort=9)
|
||||
private Date notAfterTime;
|
||||
private String notAfterTime;
|
||||
@ExcelField(title="certificate_subject",sort=7)
|
||||
private String subject;
|
||||
@ExcelField(title="keyring_name",sort=1)
|
||||
private String keyringName;
|
||||
private String cn;
|
||||
private String altName;
|
||||
|
||||
public String getCn() {
|
||||
return cn;
|
||||
}
|
||||
public String getAltName() {
|
||||
return altName;
|
||||
}
|
||||
public void setCn(String cn) {
|
||||
this.cn = cn;
|
||||
}
|
||||
public void setAltName(String altName) {
|
||||
this.altName = altName;
|
||||
}
|
||||
|
||||
|
||||
public String getKeyringName() {
|
||||
@@ -86,16 +101,16 @@ public class PxyObjKeyring extends BaseCfg<PxyObjKeyring> {
|
||||
public void setIssuer(String issuer) {
|
||||
this.issuer = issuer;
|
||||
}
|
||||
public Date getNotAfterTime() {
|
||||
public String getNotAfterTime() {
|
||||
return notAfterTime;
|
||||
}
|
||||
public Date getNotBeforeTime() {
|
||||
public String getNotBeforeTime() {
|
||||
return notBeforeTime;
|
||||
}
|
||||
public void setNotAfterTime(Date notAfterTime) {
|
||||
public void setNotAfterTime(String notAfterTime) {
|
||||
this.notAfterTime = notAfterTime;
|
||||
}
|
||||
public void setNotBeforeTime(Date notBeforeTime) {
|
||||
public void setNotBeforeTime(String notBeforeTime) {
|
||||
this.notBeforeTime = notBeforeTime;
|
||||
}
|
||||
public String getSubject() {
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
*@Title: BaseStringConfig.java
|
||||
*@Package com.nis.domain.restful
|
||||
*@Description TODO
|
||||
*@author dell
|
||||
*@date 2018年2月5日 下午5:26:02
|
||||
*@version 版本号
|
||||
*/
|
||||
package com.nis.domain.configuration.template;
|
||||
|
||||
import com.nis.util.excel.ExcelField;
|
||||
|
||||
/**
|
||||
* @Description: excel导入字符串类配置
|
||||
*/
|
||||
public class AppDomainTemplate {
|
||||
private String cfgDesc;
|
||||
private String cfgKeywords;
|
||||
private Integer matchMethod ;
|
||||
private Integer isHex;
|
||||
private Integer isCaseInsenstive;
|
||||
|
||||
@ExcelField(title="config_describe",align=2,sort=1)
|
||||
public String getCfgDesc() {
|
||||
return cfgDesc;
|
||||
}
|
||||
public void setCfgDesc(String cfgDesc) {
|
||||
this.cfgDesc = cfgDesc;
|
||||
}
|
||||
@ExcelField(title="domain_name",sort=2)
|
||||
public String getCfgKeywords() {
|
||||
return cfgKeywords;
|
||||
}
|
||||
public void setCfgKeywords(String cfgKeywords) {
|
||||
this.cfgKeywords = cfgKeywords;
|
||||
}
|
||||
@ExcelField(title="match_method",dictType="MATCH_METHOD",sort=13)
|
||||
public Integer getMatchMethod() {
|
||||
return matchMethod;
|
||||
}
|
||||
public void setMatchMethod(Integer matchMethod) {
|
||||
this.matchMethod = matchMethod;
|
||||
}
|
||||
@ExcelField(title="is_hex",dictType="IS_HEX",sort=14)
|
||||
public Integer getIsHex() {
|
||||
return isHex;
|
||||
}
|
||||
public void setIsHex(Integer isHex) {
|
||||
this.isHex = isHex;
|
||||
}
|
||||
@ExcelField(title="is_case_insenstive",dictType="CASE_INSENSTIVE",sort=15)
|
||||
public Integer getIsCaseInsenstive() {
|
||||
return isCaseInsenstive;
|
||||
}
|
||||
public void setIsCaseInsenstive(Integer isCaseInsenstive) {
|
||||
this.isCaseInsenstive = isCaseInsenstive;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user