org.bdware.doip.audit.writer.AuditLog 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.writer;
import com.google.gson.Gson;
import com.google.gson.JsonObject;
public class AuditLog {
static Gson gson = new Gson();
public JsonObject asJson() {
return gson.toJsonTree(this).getAsJsonObject();
}
}