com.centurylink.mdw.boot.MdwStarter Maven / Gradle / Ivy
package com.centurylink.mdw.boot;
import java.io.File;
public class MdwStarter {
public MdwStarter(File bootDir) {
this.bootDir = bootDir;
}
private File bootDir;
public File getBootDir() {
return bootDir;
}
/**
* Path should begin with /
*/
public File getFile(String path) {
return new File(bootDir + path);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy