com.deliveredtechnologies.rulebook.annotation.Then Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rulebook-core Show documentation
Show all versions of rulebook-core Show documentation
A simple and intuitive rules abstraction for Java
package com.deliveredtechnologies.rulebook.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Then marks a method as an action.
*/
@Retention(RUNTIME)
@Target(METHOD)
public @interface Then {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy