}
return new BufferedRequest(DEFAULT_NULL_REQUEST);
}
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;