mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-08 08:50:10 +01:00
42 lines
1.4 KiB
Java
42 lines
1.4 KiB
Java
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.0.0";
|
|
}
|
|
|
|
@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";
|
|
}
|
|
} |