develop Conflicts: src/main/resources/messages/message_en.properties src/main/resources/messages/message_ru.properties src/main/resources/messages/message_zh_CN.properties 证书颁发机构及 吊销列表功能提交
116 lines
2.0 KiB
Java
116 lines
2.0 KiB
Java
package com.nis.domain.callback;
|
|
|
|
import java.util.Date;
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
public class ProxyObjTrustedCaCrl {
|
|
@Expose
|
|
private Long id; //compileId
|
|
@Expose
|
|
private Integer cfgId; //compileId
|
|
@Expose
|
|
private Long certId; //cert compileId
|
|
@Expose
|
|
private Integer crlId; //cert compileId
|
|
@Expose
|
|
private Integer action;
|
|
@Expose
|
|
private Integer service;
|
|
@Expose
|
|
private Integer isValid;
|
|
@Expose
|
|
private Date opTime;
|
|
@Expose
|
|
private String crlFile;
|
|
|
|
public String getCrlFile() {
|
|
return crlFile;
|
|
}
|
|
public void setCrlFile(String crlFile) {
|
|
this.crlFile = crlFile;
|
|
}
|
|
public Integer getCrlId() {
|
|
return crlId;
|
|
}
|
|
public void setCrlId(Integer crlId) {
|
|
this.crlId = crlId;
|
|
}
|
|
|
|
public Long getCertId() {
|
|
return certId;
|
|
}
|
|
public void setCertId(Long certId) {
|
|
this.certId = certId;
|
|
}
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
public void setCfgId(Integer cfgId) {
|
|
this.cfgId = cfgId;
|
|
}
|
|
public Integer getCfgId() {
|
|
return cfgId;
|
|
}
|
|
|
|
/**
|
|
* action
|
|
* @return action
|
|
*/
|
|
|
|
public Integer getAction() {
|
|
return action;
|
|
}
|
|
/**
|
|
* @param action the action to set
|
|
*/
|
|
public void setAction(Integer action) {
|
|
this.action = action;
|
|
}
|
|
/**
|
|
* isValid
|
|
* @return isValid
|
|
*/
|
|
|
|
public Integer getIsValid() {
|
|
return isValid;
|
|
}
|
|
/**
|
|
* @param isValid the isValid to set
|
|
*/
|
|
public void setIsValid(Integer isValid) {
|
|
this.isValid = isValid;
|
|
}
|
|
/**
|
|
* opTime
|
|
* @return opTime
|
|
*/
|
|
|
|
public Date getOpTime() {
|
|
return opTime;
|
|
}
|
|
/**
|
|
* @param opTime the opTime to set
|
|
*/
|
|
public void setOpTime(Date opTime) {
|
|
this.opTime = opTime;
|
|
}
|
|
|
|
/**
|
|
* service
|
|
* @return service
|
|
*/
|
|
|
|
public Integer getService() {
|
|
return service;
|
|
}
|
|
/**
|
|
* @param service the service to set
|
|
*/
|
|
public void setService(Integer service) {
|
|
this.service = service;
|
|
}
|
|
}
|