hsim.checkpoint.init.InitCheckPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of check-point Show documentation
Show all versions of check-point Show documentation
Http request auto validation library for spring framework
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