private String getHttpMethod(Method method) {
PUT put = method.getAnnotation(PUT.class);
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;