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

org.n3r.quartz.glass.job.annotation.GlassJob Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
package org.n3r.quartz.glass.job.annotation;

import org.n3r.quartz.glass.log.joblog.JobLogLevel;

import java.lang.annotation.*;

@Documented
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface GlassJob {

    /**
     * User friendly description of job
     */
    String description();

    /**
     * Default job log level
     */
    JobLogLevel logLevel() default JobLogLevel.INFO;

    /**
     * dev team name
     */
    String team() default "";

    /**
     * Creat date info
     */
    String created() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy