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

com.github.lontime.extquartz.common.TriggerModel Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.github.lontime.extquartz.common;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

/**
 * Job2TriggerModel.
 * @author lontime
 * @since 1.0
 */
@Getter
@Setter
@ToString
public class TriggerModel {

    private String kind;
    private Integer priority;
    private String triggerName;
    private String triggerGroupName;
    private String startTime;
    private String previousFireTime;
    private String nextFireTime;
    private String endFireTime;
    private String finalFireTime;
    private Integer misfireInstruction;
    private String cronExpression;
    private Integer repeatCount;
    private Long repeatIntervalMs;
    private String intervalUnit;
    private Integer repeatInterval;
    private String desc;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy