io.mosip.registration.preloader.ClientPreLoaderNotification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of registration-client Show documentation
Show all versions of registration-client Show documentation
Maven project of MOSIP Registration UI
package io.mosip.registration.preloader;
import javafx.application.Preloader;
public class ClientPreLoaderNotification implements Preloader.PreloaderNotification {
private String message;
public ClientPreLoaderNotification(String statusMessage) {
setMessage(statusMessage);
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy