org.bdware.doip.audit.writer.HashAuditConfig 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
The newest version!
package org.bdware.doip.audit.writer;
import com.google.gson.JsonObject;
public class HashAuditConfig extends AuditConfig {
public HashAuditConfig(AuditRepo repo) {
super(repo);
}
@Override
public LogWriter createLogWriterInstance() {
return new HashWriter(this);
}
@Override
public AuditType getAuditType() {
return AuditType.OnlyHash;
}
}