use of org.mule.runtime.core.internal.util.splash.ArtifactShutdownSplashScreen in project mule by mulesoft.
the class DefaultMuleContext method buildShutdownSplash.
private SplashScreen buildShutdownSplash() {
SplashScreen shutdownScreen = config.isContainerMode() ? new ArtifactShutdownSplashScreen() : new ServerShutdownSplashScreen();
shutdownScreen.setHeader(this);
return shutdownScreen;
}
Aggregations