dropwizard-jobs/dropwizard-jobs

View on GitHub
dropwizard-jobs-core/src/main/java/io/dropwizard/jobs/annotations/On.java

Summary

Maintainability
A
0 mins
Test Coverage
package io.dropwizard.jobs.annotations;

import org.quartz.Trigger;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface On {

    enum MisfirePolicy {
        SMART,
        IGNORE_MISFIRES,
        DO_NOTHING,
        FIRE_AND_PROCEED
    }

    String value() default "";

    /**
     * The name of this job. If not specified, the name of the job will default to the canonical name of the annotated
     * class
     * @return the name of the job
     */
    String jobName() default "";

    String timeZone() default "";

    boolean requestRecovery() default false;

    boolean storeDurably() default false;

    int priority() default Trigger.DEFAULT_PRIORITY;

    MisfirePolicy misfirePolicy() default MisfirePolicy.SMART;

}