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

goja.core.annotation.On Maven / Gradle / Ivy

The newest version!
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2013-2014 sagyf Yang. The Four Group.
 */

package goja.core.annotation;

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

/**
 * Run the job using a Cron expression We use the Quartz CRON trigger
 * (http://www.opensymphony.com/quartz/wikidocs/CronTriggers%20Tutorial.html)
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface On {
    String value();

    boolean enabled() default true;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy