HttpMethod[] httpMethods = null;
Action action = e.getAnnotation(Action.class);
if (action != null) {
httpMethods = action.httpMethods();
}
if (httpMethods == null || httpMethods.length == 0) {
httpMethods = controller.httpMethods();
}
StringBuilder methods = new StringBuilder("checkHttpMethods(");