All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bdware.doip.audit.writer.HashAuditConfig Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy