package com.csc.library.properties; import java.io.IOException; public interface JsonFile { public String getDirectory(); public String getPath(); public String getFileName(); public void writeFile(String path) throws IOException; public byte[] getBytes(); }