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

xyz.migoo.framework.infra.job.CVSMachineSyncJobHandler Maven / Gradle / Ivy

package xyz.migoo.framework.infra.job;

import jakarta.annotation.Resource;
import org.springframework.stereotype.Component;
import xyz.migoo.framework.infra.service.cvs.CVSMachineService;
import xyz.migoo.framework.quartz.core.handler.JobHandler;

@Component
public class CVSMachineSyncJobHandler implements JobHandler {
    @Resource
    private CVSMachineService service;

    @Override
    public String execute(String param, Long jobLogId) throws Exception {
        service.sync();
        return "success";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy