use of org.mule.runtime.core.internal.util.splash.ServerStartupSplashScreen in project mule by mulesoft.
the class DefaultMuleContext method buildStartupSplash.
private SplashScreen buildStartupSplash() {
SplashScreen startupScreen = config.isContainerMode() ? new ArtifactStartupSplashScreen() : new ServerStartupSplashScreen();
startupScreen.setHeader(this);
startupScreen.setFooter(this);
return startupScreen;
}
Aggregations