org.kie.commons.services.cdi.Startup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kie-commons-cdi Show documentation
Show all versions of kie-commons-cdi Show documentation
Collection of reusable CDI extensions for KIE.
package org.kie.commons.services.cdi;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
@Retention(RUNTIME)
@Target({ TYPE })
public @interface Startup {
StartupType value() default StartupType.EAGER;
int priority() default 0;
}