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

uk.co.mruoc.properties.FakeFileContentLoader Maven / Gradle / Ivy

Go to download

Code library to easily load files and file from the classpath or file system file

There is a newer version: 7.0.4
Show newest version
package uk.co.mruoc.properties;

public class FakeFileContentLoader implements FileContentLoader {

    private String path;
    private String content;

    @Override
    public String loadContent(String path) {
        this.path = path;
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }

    public String getLastLoadedPath() {
        return path;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy