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

hsim.checkpoint.init.InitCheckPoint Maven / Gradle / Ivy

There is a newer version: 0.1.2
Show newest version
package hsim.checkpoint.init;

import hsim.checkpoint.core.component.ComponentMap;
import hsim.checkpoint.core.msg.MethodSyncor;
import hsim.checkpoint.core.repository.ValidationDataRepository;
import lombok.extern.slf4j.Slf4j;

/**
 * The type Init check point.
 */
@Slf4j
public class InitCheckPoint {

    private MethodSyncor methodSyncor = ComponentMap.get(MethodSyncor.class);
    private ValidationDataRepository validationDataRepository = ComponentMap.get(ValidationDataRepository.class);

    /**
     * Instantiates a new Init check point.
     */
    public InitCheckPoint() {
        this.validationDataRepository.refresh();
        this.methodSyncor.updateMethodKeyAsync();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy