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

org.valkyriercp.sample.simple.SimpleSplashScreenConfig Maven / Gradle / Ivy

package org.valkyriercp.sample.simple;

import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.ClassPathResource;
import org.valkyriercp.application.splash.DefaultSplashScreenConfig;
import org.valkyriercp.application.splash.ProgressSplashScreen;
import org.valkyriercp.application.splash.SplashScreen;

@Configuration
public class SimpleSplashScreenConfig extends DefaultSplashScreenConfig {
    @Override
    public SplashScreen splashScreen() {
        ProgressSplashScreen progressSplashScreen = new ProgressSplashScreen();
        progressSplashScreen.setImageResourcePath(new ClassPathResource("/org/valkyriercp/images/splash/default.jpg"));
        return progressSplashScreen;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy