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

com.atlassian.ta.wiremockpactgenerator.pactgenerator.FileSystem Maven / Gradle / Ivy

package com.atlassian.ta.wiremockpactgenerator.pactgenerator;

public interface FileSystem {
    boolean pathExists(String path);

    void saveFile(String fileName, String content) throws Exception;

    void createPath(String path);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy