if (put != null) return HttpMethod.PUT;
POST post = method.getAnnotation(POST.class);
if (post != null) return HttpMethod.POST;
DELETE delete = method.getAnnotation(DELETE.class);
if (delete != null) return HttpMethod.DELETE;
return HttpMethod.GET;
}