org.bdware.doip.audit.EndpointConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doip-audit-tool Show documentation
Show all versions of doip-audit-tool Show documentation
doip audit tool developed by bdware
package org.bdware.doip.audit;
import com.google.gson.JsonObject;
import org.bdware.doip.audit.writer.AuditType;
//对于DOIPServer而言,EndpointConfig用于向标识解析系统连接,并验证自己的合法身份。
//对于DOIPClient而言,EndpointConfig用于向标识解析系统发起解析请求、向DOIPServer发请带签名的DOIP消息。
public class EndpointConfig {
public static int defaultDOIPServerPort = 2051;
public static String defaultRepoType = "AutoAuditRepo";
public String routerURI;
public String repoName;
public String publicKey;
public String privateKey;
public AuditType auditType;
public JsonObject extraConfig;
};