41 lines
790 B
Java
41 lines
790 B
Java
|
|
package com.nis.domain.configuration;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 可信证书
|
||
|
|
* @author ddm
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
public class PxyObjTrustedCaCert extends BaseCfg<PxyObjTrustedCaCert> {
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
private static final long serialVersionUID = -2720862431960415564L;
|
||
|
|
private String indexTable="pxy_obj_trusted_ca_cert";
|
||
|
|
private String issuer; //颁发者
|
||
|
|
private String certFile;
|
||
|
|
public String getIssuer() {
|
||
|
|
return issuer;
|
||
|
|
}
|
||
|
|
public void setIssuer(String issuer) {
|
||
|
|
this.issuer = issuer;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCertFile() {
|
||
|
|
return certFile;
|
||
|
|
}
|
||
|
|
public void setCertFile(String certFile) {
|
||
|
|
this.certFile = certFile;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getIndexTable() {
|
||
|
|
return indexTable;
|
||
|
|
}
|
||
|
|
public void setIndexTable(String indexTable) {
|
||
|
|
this.indexTable = indexTable;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|