public static String getProperty(String key) { if (instance.properties == null) { instance.loadProperties(); } return instance.properties.getProperty(key); }
public static void setPropertiesLocation(String filepath) { instance.setPropertiesFile(filepath); }
public static String getVersionedFilename(final String filename) { return filename + "-" + Configuration.getInstance().getVersion(); }