All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pamirs.pradar.AppNameUtils Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.pamirs.pradar;

public class AppNameUtils {

    private static final String DEFAULT = "default";

    public static final String appName() {
        String appName = System.getProperty("simulator.app.name", "default");
        if (DEFAULT.equals(appName)) {
            appName = System.getProperty("app.name", "default");
        }
        return appName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy