com.deliveredtechnologies.rulebook.annotation.Result 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.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Result is used to map a single field to a Result in a {@link com.deliveredtechnologies.rulebook.Decision}.
*/
@Target(FIELD)
@Retention(RUNTIME)
public @interface Result {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy