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