uk.co.mruoc.file.content.FileSystemFileContentLoader Maven / Gradle / Ivy
package uk.co.mruoc.file.content;
import lombok.extern.slf4j.Slf4j;
import uk.co.mruoc.file.FileSystemInputStreamLoader;
@Slf4j
public class FileSystemFileContentLoader extends DefaultFileContentLoader {
public FileSystemFileContentLoader() {
super(new FileSystemInputStreamLoader());
}
@Override
public String loadContent(String path) {
log.info("loading file content from file system path {}", path);
return super.loadContent(path);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy