}
@Override
public void intercept(InterceptorStack stack, ResourceMethod method,
Object resourceInstance) throws InterceptionException {
CustomBrutauthRules annotation = method.getMethod().getAnnotation(CustomBrutauthRules.class);
Class<? extends CustomBrutauthRule>[] values = annotation.value();
for (Class<? extends CustomBrutauthRule> value : values) {
CustomBrutauthRule brutauthRule = container.instanceFor(value);
boolean allowed = invoker.invoke(brutauthRule, methodInfo.getParameters());
RuleHandler handler = handlers.getHandler(brutauthRule);