package net.tomatentum.marinara.checks; import java.lang.annotation.Annotation; public interface InteractionCheck { public boolean preExec(Object context, A annotation); public void postExec(Object context, A annotation); }