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

net.n2oapp.auth.gateway.rdm.scheduled.RegionSynchronizeJob Maven / Gradle / Ivy

The newest version!
package net.n2oapp.auth.gateway.rdm.scheduled;

import org.quartz.JobExecutionContext;
import org.quartz.SchedulerException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class RegionSynchronizeJob extends SynchronizeJob {

    private static final Logger logger = LoggerFactory.getLogger(RegionSynchronizeJob.class);

    @Value("${rdm.sync.ref-book-code.region}")
    private String regionRefBookCode;

    @Override
    public void execute(JobExecutionContext context) {
        logger.info("Region sync is started");
        try {
            getRdmSyncRest(context).update(regionRefBookCode);
        } catch (SchedulerException e) {
            logger.error("cannot get " + KEY + "property", e);
            throw new RuntimeException(e);
        }
        logger.info("Region sync is completed");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy