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

com.taboola.cronyx.annotations.JobMethod Maven / Gradle / Ivy

The newest version!
package com.taboola.cronyx.annotations;


import java.lang.annotation.*;

/**
 * This annotation is used to mark the job method, on classes marked with @Job that have more than one
 * method. It can only be placed on a class marked with the @Job param, otherwise it will be ignored.
 *
 * @see com.taboola.cronyx.annotations.Job
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface JobMethod {

    String name() default "job";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy