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

io.robe.quartz.common.JobInfo Maven / Gradle / Ivy

There is a newer version: 0.5.0.0-1039
Show newest version
package io.robe.quartz.common;

import org.quartz.Job;

import java.util.List;

public interface JobInfo {

    public String getName();

    public String getDescription();

    List getTriggers();

    public void setTriggers(List triggers);

    Class getJobClass();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy