for (Class<? extends CustomBrutauthRule> value : values) {
CustomBrutauthRule brutauthRule = container.instanceFor(value);
boolean allowed = invoker.invoke(brutauthRule, methodInfo.getParameters());
RuleHandler handler = handlers.getHandler(brutauthRule);
if(!allowed){
handler.handle();
return;
}
}
stack.next(method, resourceInstance);