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

io.mosip.registration.preloader.ClientPreLoaderNotification Maven / Gradle / Ivy

There is a newer version: 1.2.0.2
Show newest version
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