package stirling.software.SPDF.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class AppConfig { @Bean(name = "appName") public String appName() { String appName = System.getProperty("APP_HOME_NAME"); if (appName == null) appName = System.getenv("APP_HOME_NAME"); return (appName != null) ? appName : "Stirling PDF"; } @Bean(name = "appVersion") public String appVersion() { String version = getClass().getPackage().getImplementationVersion(); return (version != null) ? version : "0.3.3"; } @Bean(name = "homeText") public String homeText() { String homeText = System.getProperty("APP_HOME_DESCRIPTION"); if (homeText == null) homeText = System.getenv("APP_HOME_DESCRIPTION"); return (homeText != null) ? homeText : "null"; } @Bean(name = "navBarText") public String navBarText() { String navBarText = System.getProperty("APP_NAVBAR_NAME"); if (navBarText == null) navBarText = System.getenv("APP_NAVBAR_NAME"); if (navBarText == null) navBarText = System.getProperty("APP_HOME_NAME"); if (navBarText == null) navBarText = System.getenv("APP_HOME_NAME"); return (navBarText != null) ? navBarText : "Stirling PDF"; } }