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

net.leanix.dropkit.quartz.JobConfiguration Maven / Gradle / Ivy

There is a newer version: 2.0.10
Show newest version
package net.leanix.dropkit.quartz;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Used to specify the interval time in milliseconds or seconds.
 * 
 * @author ralfwehner
 *
 */
public class JobConfiguration {

    @JsonProperty
    private long intervalMillis = 0;

    @JsonProperty
    private long intervalSeconds = 0;

    public long getIntervalMillis() {
        if (intervalMillis > 0) {
            return intervalMillis;
        }
        return intervalSeconds * 1000L;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy