com.mps.deepviolet.api.JsonLdrMozillaCerts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of DeepViolet Show documentation
Show all versions of DeepViolet Show documentation
TLS/SSL security introspection API
The newest version!
package com.mps.deepviolet.api;
import java.util.Map;
public class JsonLdrMozillaCerts {
private String href;
private Map configurations;
private String version;
public String getHref() {
return href;
}
public void setHref(String href) {
this.href = href;
}
public Map getConfigurations() {
return configurations;
}
public void setConfigurations(Map configurations) {
this.configurations = configurations;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
}