add ability to return false to cancel execution in pre Checks and remove return type on post checks
All checks were successful
github-mirror / push-github (push) Successful in 7s
Build / Gradle-Build (push) Successful in 14s
Test / Gradle-Test (push) Successful in 21s

This commit is contained in:
2024-12-01 13:06:42 +01:00
parent 33392b02fb
commit c363ab9744
4 changed files with 6 additions and 7 deletions

View File

@@ -5,6 +5,6 @@ import java.lang.annotation.Annotation;
public interface InteractionCheck<A extends Annotation> {
public boolean preExec(Object context, A annotation);
public boolean postExec(Object context, A annotation);
public void postExec(Object context, A annotation);
}