This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/domain/log/NtcIpsecLog.java
2018-06-11 18:08:58 +08:00

35 lines
812 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.nis.domain.log;
public class NtcIpsecLog extends BaseLogEntity<NtcIpsecLog> {
/**
*
*/
private static final long serialVersionUID = 351171176772839901L;
private Integer exProtocol;//交换协议1-ISAKMP(V1) 2-IKEv2 3-其它
private Integer isakmpMode;//加密方式0-其它1-IPSEC 2-无
private String chapName;//用户名称
public Integer getExProtocol() {
return exProtocol;
}
public void setExProtocol(Integer exProtocol) {
this.exProtocol = exProtocol;
}
public Integer getIsakmpMode() {
return isakmpMode;
}
public void setIsakmpMode(Integer isakmpMode) {
this.isakmpMode = isakmpMode;
}
public String getChapName() {
return chapName;
}
public void setChapName(String chapName) {
this.chapName = chapName;
}
}