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