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

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

package xyz.migoo.framework.infra.job;

import org.springframework.stereotype.Component;
import xyz.migoo.framework.quartz.core.handler.JobHandler;

@Component
public class TestJobHandler implements JobHandler {
    @Override
    public String execute(String param, Long jobLogId) throws Exception {
        return "success";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy