org.bdware.doip.audit.config.ConfigStorage 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.config;
import com.google.gson.JsonObject;
import org.bdware.doip.audit.EndpointConfig;
public interface ConfigStorage {
JsonObject load();
EndpointConfig loadAsEndpointConfig();
void store(JsonObject jsonObject);
}