}
private boolean isCandidate(Method method, BindingScope scope) {
Action action = scope.getInstance(Action.class);
Handler handler = method.getAnnotation(Handler.class);
if (handler != null) {
if (!canHandleAction(handler, action, true)) {
return false;
}